Assert.assertSame(MarkovOutcome.positive, newTransitions.get(graph.findVertex("B")).get(lblB));
Assert.assertSame(MarkovOutcome.positive, newTransitions.get(graph.findVertex("Z")).get(lblU));
final LearnerGraph expected = FsmParser.buildLearnerGraph("A-a->B / A-c->B-c->Z-u->Y / B-b->C / T-b->T-u->T","testConstructExtendedGraph7b",config, converter);
LearnerGraph actual = cl.constructMarkovTentative();
DifferentFSMException ex = WMethod.checkM(expected, actual);
if (ex != null)
throw ex;
Assert.assertNotSame(graph, actual);
}