707172737475767778
} @Test public void testValidAtomWithLiteralArguments() { RuleAtom ruleAtom = new DatavaluedPropertyAtom(datatypeProperty, argument1, literal); execTest(ruleAtom); }
787980818283848586
} @Test public void testValidAtomWithTypedLiteralArguments() { RuleAtom ruleAtom = new DatavaluedPropertyAtom(datatypeProperty, argument1, typedLiteral); execTest(ruleAtom); }
424344454647484950
} @Test public void testValidClassAtomWith() { RuleAtom ruleAtom = new ClassAtom(classResource, argument1); execTest(ruleAtom); }
62636465666768697071
} @Test public void testValidAtomWithVariableArguments() { RuleAtom ruleAtom = new GreaterThanAtom(variable1, variable2); execTest(ruleAtom); }
717273747576777879
} @Test public void testValidAtomWithLiteralArguments() { RuleAtom ruleAtom = new GreaterThanAtom(literal1, literal2); execTest(ruleAtom); }
798081828384858687
} @Test public void testValidAtomWithTypedLiteralArguments() { RuleAtom ruleAtom = new GreaterThanAtom(typedLiteral1, typedLiteral2); execTest(ruleAtom); }
454647484950515253
} @Test public void testValidIndividualPropertyAtomWith() { RuleAtom ruleAtom = new IndividualPropertyAtom(objectProperty, argument1, argument2); execTest(ruleAtom); }
61626364656667686970
} @Test public void testValidAtomWithVariableArguments() { RuleAtom ruleAtom = new LessThanAtom(variable1, variable2); execTest(ruleAtom); }
} @Test public void testValidAtomWithLiteralArguments() { RuleAtom ruleAtom = new LessThanAtom(literal1, literal2); execTest(ruleAtom); }
} @Test public void testValidAtomWithTypedLiteralArguments() { RuleAtom ruleAtom = new LessThanAtom(typedLiteral1, typedLiteral2); execTest(ruleAtom); }