public void testSimple() throws OWLException {
OWLAxiom axiom = OWL.equivalentClasses(CollectionUtil.<OWLClassExpression>asSet(OWL.Thing, m_Cls[0], m_Cls[1]));
Lint lint = m_Pattern.match(m_Ontology, axiom);
assertNotNull(lint);
LintFixer fixer = lint.getLintFixer();
assertTrue(fixer.getAxiomsToRemove().contains(axiom));
assertTrue(fixer.getAxiomsToAdd().isEmpty());
assertNull(lint.getSeverity());
assertSame(m_Ontology, lint.getParticipatingOntology());
}