}
public void testBothComponents()
{
Graph L = graphWith( "" ), R = graphWith( "" );
Graph du = new DisjointUnion( L, R );
assertIsomorphic( Graph.emptyGraph, du );
L.add( triple( "x P y" ) );
assertIsomorphic( graphWith( "x P y" ), du );
R.add( triple( "A rdf:type Route" ) );
assertIsomorphic( graphWith( "x P y; A rdf:type Route" ), du );