{
DirectedSparseGraph g = buildGraph(originalGraph, testName);
Assert.assertEquals(whetherToBeCompleted,DeterministicDirectedSparseGraph.completeGraph(g,"REJECT"));checkM(g, expectedOutcome,config);
LearnerGraph fsm = new LearnerGraph(buildGraph(originalGraph, testName),config);
Assert.assertEquals(whetherToBeCompleted,fsm.paths.completeGraph(
new VertexID("REJECT")));
WMethod.checkM(fsm, new LearnerGraph(buildGraph(expectedOutcome,testName),config));
}