Assert.assertEquals(10, mapping.size());
}
@Test
public void test13() {
NonLiteral start1 = new BNode();
TripleCollection tc1 = Utils4Testing.generateLine(4,start1);
tc1.addAll(Utils4Testing.generateLine(5,start1));
NonLiteral start2 = new BNode();
TripleCollection tc2 = Utils4Testing.generateLine(3,start2);
tc2.addAll(Utils4Testing.generateLine(3,start2));
Assert.assertEquals(9, tc1.size());
final Map<BNode, BNode> mapping = GraphMatcher.getValidMapping(tc1, tc2);
Assert.assertNull(mapping);