@SuppressWarnings("javadoc")
public class BuiltInDatatypesTestCase extends TestBase {
@Test
public void testBuiltInDatatypes() {
OWL2Datatype dt = OWL2Datatype
.getDatatype(OWLRDFVocabulary.RDF_PLAIN_LITERAL.getIRI());
assertNotNull("object should not be null", dt);
dt = OWL2Datatype.getDatatype(OWLRDFVocabulary.RDFS_LITERAL.getIRI());
assertNotNull("object should not be null", dt);
OWLDatatype datatype = df.getOWLDatatype(OWLRDFVocabulary.RDFS_LITERAL
.getIRI());
assertNotNull("object should not be null", datatype);
OWL2Datatype test = datatype.getBuiltInDatatype();
assertEquals(test, dt);
}