Exemplo n.º 1
0
 @Before
 public void setup() {
   a = new Base();
   b = new Base();
   c = new Super();
   a.x = "a";
   b.x = "b";
   c.x = "c";
   a.y = 11L;
   c.ignore = 12;
 }