@Test
public void testAddRecipe_3args_1() {
// RuleStore store = new RuleStoreImpl("./src/main/resources/RuleOntology/TestKReSOntologyRules.owl");
OWLOntology owl = store.getOntology();
//Load the example file
LoadRuleFile load = new LoadRuleFile("./src/main/resources/RuleOntology/TestRuleFileExample.txt",store);
String ID = owl.getOntologyID().toString().replace("<","").replace(">","")+"#";
String recipeName = "MyRecipeNew";
Vector<IRI> rules = new Vector();
rules.add(IRI.create(ID+"MyRuleC"));
rules.add(IRI.create(ID+"MyRuleB"));
rules.add(IRI.create(ID+"MyRuleA"));
String recipeDescription = "My comment to the recipe";
AddRecipe instance = new AddRecipe(load.getStore());
boolean result = instance.addRecipe(recipeName, rules, recipeDescription);
OWLOntology newonto = instance.getStore().getOntology();
if(result){
OWLNamedIndividual ruleind = newonto.getOWLOntologyManager().getOWLDataFactory().getOWLNamedIndividual(IRI.create(ID + "MyRecipeNew"));
int axiom = newonto.getAxioms(ruleind).size();