String [] expectedDuplicates = (stateC.equals("C"))? new String[]{ stateC,"A" }:new String[]{"A"};
LearnerGraphND outcome = runTest(grA,grB, "D", expectedDuplicates);
Assert.assertNull(outcome.findVertex(disconnectedA1));
Assert.assertTrue(DeterministicDirectedSparseGraph.deepEquals(disconnectedB2, outcome.findVertex(disconnectedB2)));
Assert.assertTrue(DeterministicDirectedSparseGraph.deepEquals(disconnectedB3, outcome.findVertex(disconnectedB3)));
}
/** Graph B is slightly different now, hence duplicates are different too. */
@Test
public final void testGD_nondetC()