@Test
public void testIdentifyUncoveredTransitions1()
{
final LearnerGraph graph = FsmParser.buildLearnerGraph("A-a->D-b->C / A-c->B-b->C / B-u->E","testIdentifyUncoveredTransitions1a",config, converter);
final LearnerGraph reference = FsmParser.buildLearnerGraph("A-a->D-b->C / A-c->B-b->C / B-u->E / B-x->B / T-b->T-u->T","testIdentifyUncoveredTransitions1b",config, converter);
Helper.checkForCorrectException(new whatToRun() {
@Override
public void run() throws NumberFormatException
{
MarkovPassivePairSelection.identifyUncoveredTransitions(graph,reference);
}