String input = "<http://taxonomy.wolterskluwer.de/practicearea/10112>\n a <http://schema.wolterskluwer.de/TaxonomyTerm> , <http://www.w3.org/2004/02/skos/core#Concept> ;\n"
+ " <http://www.w3.org/2004/02/skos/core#broader>\n [] ;\n"
+ " <http://www.w3.org/2004/02/skos/core#broader>\n [] .";
OWLOntology ontology = loadOntologyFromString(input);
OWLIndividual i = NamedIndividual(IRI("http://taxonomy.wolterskluwer.de/practicearea/10112"));
OWLAnnotationProperty ap = AnnotationProperty(IRI("http://www.w3.org/2004/02/skos/core#broader"));
OWLClass c = Class(IRI("http://www.w3.org/2004/02/skos/core#Concept"));
OWLClass term = Class(IRI("http://schema.wolterskluwer.de/TaxonomyTerm"));
assertTrue(ontology.containsAxiom(ClassAssertion(c, i)));
assertTrue(ontology.containsAxiom(ClassAssertion(term, i)));
assertTrue(ontology.containsEntityInSignature(ap));