package Examples; /** * Test for the IntEqualsIntEvaluator. */ public class GATest4 { private int i = 0; public void step() { i++; } public void test() { if(i == 100) System.out.println("In narrow path."); } }