public void testOneMax() throws OWLException {
m_Pattern.setMaxAllowed(2);
OWLClassExpression maxCard = OWL.max(m_Pro[0], 3);
OWLAxiom axiom = OWL.disjointClasses(m_Cls[0], maxCard);
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());
}