Node r = NodeFactory.createURI("http://www.hpl.hp.com/semweb/2003/eg#r");
Node C1 = NodeFactory.createURI("http://www.hpl.hp.com/semweb/2003/eg#C1");
data.add(new Triple(a, p, b));
List<Rule> rules = Rule.parseRules(Util.loadRuleParserFromResourceFile("testing/reasoners/bugs/rdfs-error1.brules"));
Reasoner reasoner = createReasoner(rules);
InfGraph infgraph = reasoner.bind(data);
TestUtil.assertIteratorValues(this,
infgraph.find(b, ty, C1),
new Object[] {
new Triple(b, ty, C1)
} );