Model a = ModelFactory.createDefaultModel();
Model b = ModelFactory.createDefaultModel();
a.read(new StringReader(testData), null, "TTL");
b.read(new StringReader(testData2), null, "TTL");
b.removeAll(b.createResource("http://r1"), null, null);
Assert.assertEquals(1, b.size());
this.testDeltas(a, b, 1);
this.testDeltas(b, a, 0);
}