Exemplo n.º 1
0
 @Test
 public void BuildUp() throws Exception {
   SI s = new SI();
   assertNull(s.AGetter());
   c.BuildUp(s);
   assertNotNull(s.AGetter());
 }
Exemplo n.º 2
0
 @Test
 public void SetterInjection() throws Exception {
   SI s = c.Resolve(SI.class);
   assertNotNull(s.AGetter());
 }