505152535455565758
} @Test public void init_01() throws Exception { final ClassDataRecorder rec = runScenario(Target_init_01.class); final BlockData block0 = rec.getMethod("<init>").getBlock(0); block0.assertLines(23); block0.assertCovered(); }
585960616263646566
} @Test public void init_02() throws Exception { final ClassDataRecorder rec = runScenario(Target_init_02.class); final BlockData block0 = rec.getMethod("<init>").getBlock(0); block0.assertLines(25, 26); block0.assertCovered(); }
666768697071727374
} @Test public void init_03() throws Exception { final ClassDataRecorder rec = runScenario(Target_init_03.class); final BlockData block0 = rec.getMethod("<init>").getBlock(0); block0.assertLines(23, 25); block0.assertCovered(); }
747576777879808182
} @Test public void init_04() throws Exception { final ClassDataRecorder rec = runScenario(Target_init_04.class); final BlockData block0 = rec.getMethod("<init>").getBlock(0); block0.assertLines(25, 27, 28); block0.assertCovered(); }
828384858687888990
} @Test public void init_05() throws Exception { final ClassDataRecorder rec = runScenario(Target_init_05.class); final BlockData block0 = rec.getMethod("<init>").getBlock(0); block0.assertLines(29); block0.assertCovered(); }
9091929394959697
} @Test public void cinit_01() throws Exception { final ClassDataRecorder rec = runScenario(Target_cinit_01.class); final BlockData block0 = rec.getMethod("<clinit>").getBlock(0); block0.assertCovered(); }
979899100101102103104
} @Test public void cinit_02() throws Exception { final ClassDataRecorder rec = runScenario(Target_cinit_02.class); final BlockData block0 = rec.getMethod("<clinit>").getBlock(0); block0.assertCovered(); }