use of org.evosuite.setup.Call in project evosuite by EvoSuite.
the class IBranchSuiteFitness method countGoals.
private void countGoals(List<IBranchTestFitness> branchGoals) {
int totalGoals = branchGoals.size();
int goalsInTarget = 0;
for (IBranchTestFitness g : branchGoals) {
boolean flag = true;
for (Call call : g.getContext().getContext()) {
if (!call.getClassName().equals(Properties.TARGET_CLASS)) {
flag = false;
break;
}
}
if (flag)
goalsInTarget++;
}
ClientServices.getInstance().getClientNode().trackOutputVariable(RuntimeVariable.IBranchInitialGoals, totalGoals);
ClientServices.getInstance().getClientNode().trackOutputVariable(RuntimeVariable.IBranchInitialGoalsInTargetClass, goalsInTarget);
}
use of org.evosuite.setup.Call in project evosuite by EvoSuite.
the class CallGraph method getMethodEntryPoint.
/**
* computes and returns the call contexts of the specific method
*
* @param className
* @param methodName
* @return
*/
public Set<CallContext> getMethodEntryPoint(String className, String methodName) {
Set<CallContext> contexts = new HashSet<>();
List<Call> cont = new ArrayList<>();
cont.add(new Call(className, methodName));
CallContext context = new CallContext(cont);
if (publicMethods.contains(context)) {
contexts.add(context);
} else {
contexts.add(new CallContext());
}
return contexts;
}
use of org.evosuite.setup.Call in project evosuite by EvoSuite.
the class CallGraph method addPublicClassMethod.
private void addPublicClassMethod(String className, String methodName, Set<CallContext> contexts) {
List<Call> calls = new ArrayList<>();
Call call = new Call(className, methodName);
calls.add(call);
CallContext context = new CallContext(calls);
if (publicMethods.contains(context) && className.equals(this.className))
contexts.add(context);
}
use of org.evosuite.setup.Call in project evosuite by EvoSuite.
the class CallGraph method convertIntoCallContext.
private Set<CallContext> convertIntoCallContext(Set<List<CallGraphEntry>> paths) {
Set<CallContext> contexts = new HashSet<>();
// return only context that starts from the class under test
for (List<CallGraphEntry> list : paths) {
boolean insert = false;
List<Call> cont = new ArrayList<>();
for (int i = list.size() - 1; i >= 0; i--) {
if (!insert && list.get(i).getClassName().equals(className)) {
insert = true;
}
if (insert)
cont.add(new Call(list.get(i).getClassName(), list.get(i).getMethodName()));
}
contexts.add(new CallContext(cont));
}
return contexts;
}
Aggregations