use of org.evosuite.runtime.instrumentation.AnnotatedLabel in project evosuite by EvoSuite.
the class ErrorConditionMethodAdapter method tagBranch.
public void tagBranch() {
Label dummyTag = new AnnotatedLabel(false, true);
// dummyTag.info = Boolean.TRUE;
super.visitLabel(dummyTag);
}
use of org.evosuite.runtime.instrumentation.AnnotatedLabel in project evosuite by EvoSuite.
the class ExceptionTransformationMethodAdapter method tagBranchExit.
public void tagBranchExit() {
Label dummyTag = new AnnotatedLabel(false, false);
// dummyTag.info = Boolean.FALSE;
super.visitLabel(dummyTag);
}
Aggregations