Trivial [incomplete] test that a Wrapped graph pokes through to the underlying
graph. Really want something using mock classes. Will think about it.
*/
public void testWrappedSame()
{
Graph m = Factory.createGraphMem();
Graph w = new WrappedGraph( m );
graphAdd( m, "a trumps b; c eats d" );
assertIsomorphic( m, w );
graphAdd( w, "i write this; you read that" );
assertIsomorphic( w, m );
}