// test for 335
@Test
public void shouldParseScientificNotation()
throws OWLOntologyCreationException {
String input = "<http://dbpedia.org/resource/South_Africa> <http://dbpedia.org/ontology/areaTotal> 1e+07 .";
OWLOntology ontology = loadOntologyFromString(input);
OWLAnnotationProperty p = AnnotationProperty(IRI("http://dbpedia.org/ontology/areaTotal"));
assertTrue(ontology.getAnnotationPropertiesInSignature(EXCLUDED)
.contains(p));
IRI i = IRI("http://dbpedia.org/resource/South_Africa");
assertTrue(ontology.containsAxiom(AnnotationAssertion(p, i,
Literal("1.0E7", OWL2Datatype.XSD_DOUBLE))));
}