use of org.apache.stanbol.rules.base.api.RuleAtom in project stanbol by apache.
the class GreaterThanAtomTest method testValidAtomWithLiteralArguments.
@Test
public void testValidAtomWithLiteralArguments() {
RuleAtom ruleAtom = new GreaterThanAtom(literal1, literal2);
execTest(ruleAtom);
}
use of org.apache.stanbol.rules.base.api.RuleAtom in project stanbol by apache.
the class GreaterThanAtomTest method testValidAtomWithTypedLiteralArguments.
@Test
public void testValidAtomWithTypedLiteralArguments() {
RuleAtom ruleAtom = new GreaterThanAtom(typedLiteral1, typedLiteral2);
execTest(ruleAtom);
}
use of org.apache.stanbol.rules.base.api.RuleAtom in project stanbol by apache.
the class IndividualPropertyAtomTest method testValidIndividualPropertyAtomWith.
@Test
public void testValidIndividualPropertyAtomWith() {
RuleAtom ruleAtom = new IndividualPropertyAtom(objectProperty, argument1, argument2);
execTest(ruleAtom);
}
use of org.apache.stanbol.rules.base.api.RuleAtom in project stanbol by apache.
the class LessThanAtomTest method testValidAtomWithLiteralArguments.
@Test
public void testValidAtomWithLiteralArguments() {
RuleAtom ruleAtom = new LessThanAtom(literal1, literal2);
execTest(ruleAtom);
}
use of org.apache.stanbol.rules.base.api.RuleAtom in project stanbol by apache.
the class LessThanAtomTest method testValidAtomWithTypedLiteralArguments.
@Test
public void testValidAtomWithTypedLiteralArguments() {
RuleAtom ruleAtom = new LessThanAtom(typedLiteral1, typedLiteral2);
execTest(ruleAtom);
}
Aggregations