public void testGetRule() {
// RuleStore store = new RuleStoreImpl("./src/main/resources/RuleOntology/TestKReSOntologyRules.owl");
OWLOntology owl = store.getOntology();
String ID = owl.getOntologyID().toString().replace("<", "").replace(">", "") + "#";
// Load the example file
LoadRuleFile load = new LoadRuleFile("./src/main/resources/RuleOntology/TestRuleFileExample.txt",
store);
owl = load.getStore().getOntology();
GetRule rule = new GetRule(store);
HashMap<IRI,String> map = rule.getRule("MyRuleC");
HashMap<IRI,String> expmap = new HashMap();
expmap.put(IRI.create(ID + "MyRuleC"), "MyRuleCBody -> MyRuleCHead");