public void testUnsatisfiableClasses() throws OWLException {
OWLOntologyManager m = create();
OWLOntology o = loadPizzaOntology(m);
// Create a console progress monitor. This will print the reasoner
// progress out to the console.
ReasonerProgressMonitor progressMonitor = new LoggingReasonerProgressMonitor(
LOG, "testUnsatisfiableClasses");
OWLReasonerConfiguration config = new SimpleConfiguration(
progressMonitor);
// Create a reasoner that will reason over our ontology and its imports
// closure. Pass in the configuration.