return tester;
}
public Tester constructLookaheadTester(Project project, CoverageMetric metric) {
LookaheadTester tester = new LookaheadTester(loadModelClass(project));
tester.addCoverageMetric(metric);
// tester.setDepth(100);
tester.setMaxLength(WALK_LENGTH);
return tester;
}