public void testSimple() throws OWLException {
m_Pattern.setMaxAllowed(2);
OWLClassExpression union = OWL.or(m_Cls[1], m_Cls[2], m_Cls[3]);
OWLAxiom axiom = OWL.subClassOf(m_Cls[0], union);
Lint lint = m_Pattern.match(m_Ontology, axiom);
assertNotNull(lint);
assertSame(m_Pattern, lint.getPattern());
assertEquals(1, lint.getParticipatingAxioms().size());
assertNull(lint.getLintFixer());
assertEquals(3.0, lint.getSeverity().doubleValue(), DOUBLE_DELTA);
assertSame(m_Ontology, lint.getParticipatingOntology());
}