assertEquals(s1, s2) ;
}
@Test public void node2label_03()
{
NodeToLabel mapper = factory.create() ;
Node x1 = NodeFactory.createAnon() ;
Node x2 = NodeFactory.createAnon() ;
String s1 = mapper.get(null, x1) ;
String s2 = mapper.get(null, x2) ;
assertNotNull(s1) ;
assertNotNull(s2) ;
assertNotEquals(s1, s2) ;
}