@Test
public final void testGraphConstructionFail7()
{
DirectedSparseGraph g = new DirectedSparseGraph();
DirectedSparseVertex init = new DirectedSparseVertex();
init.addUserDatum(JUConstants.INITIAL, true, UserData.SHARED);
init.addUserDatum(JUConstants.ACCEPTED, true, UserData.SHARED);g.addVertex(init);
boolean exceptionThrown = false;
try
{
new LearnerGraph(new DirectedSparseGraph(),config);// now getGraphData should choke.