207208209210211212213
} public void testInRelation() { assertParser(ExpressionParser.inRelation(NUMBER, RelationParser.TABLE), "1 in (table)", new BinaryRelationalExpression(number(1), Op.IN, table("table"))); }
213214215216217218219
} public void testNotInRelation() { assertParser(ExpressionParser.notInRelation(NUMBER, RelationParser.TABLE), "1 not in (table)", new BinaryRelationalExpression(number(1), Op.NOT_IN, table("table"))); }
219220221222223224225
@Test public void testInRelation() { assertParser(ExpressionParser.inRelation(NUMBER, RelationParser.TABLE), "1 in (table)", new BinaryRelationalExpression(number(1), Op.IN, table("table"))); }
226227228229230231232
@Test public void testNotInRelation() { assertParser(ExpressionParser.notInRelation(NUMBER, RelationParser.TABLE), "1 not in (table)", new BinaryRelationalExpression(number(1), Op.NOT_IN, table("table"))); }