/** Nothing to add because the alphabet of the graph of interest consists of a single letter for which there is no statistical data. */
@Test
public void testConstructExtendedGraph2()
{
MarkovModel m = new MarkovModel(2,true,true);
Set<List<Label>> plusStrings = buildSet(new String[][] { new String[]{"a","p"} },config,converter), minusStrings = buildSet(new String[][] { new String[]{"a","u"} },config,converter);
m.createMarkovLearner(plusStrings, minusStrings,false);
final LearnerGraph graph = FsmParser.buildLearnerGraph("A-a->B","testConstructExtendedGraph2",config, converter);
MarkovClassifier cl = new MarkovClassifier(m,graph);
Map<CmpVertex, Map<Label, MarkovOutcome>> newTransitions = cl.predictTransitions();
Assert.assertTrue(newTransitions.isEmpty());// not enough evidence to update, hence nothing should be recorded.
final LearnerGraph expected = FsmParser.buildLearnerGraph("A-a->B","testConstructExtendedGraph2",config, converter);