package junit; import java.util.Collections; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; public class X { int m() { // start if (true) { return 17; } // end System.out.println("was here"); return 122; } int m3() { // start zzz(); // end System.out.println("was here"); return 122; } private int zzz() { if (true) { return 17; } } void m2() { // start if(xxx()) return; // end System.out.println("was here"); } private bo xxx() { if (true) { return; } } }