public void testGetLeftExpression() throws Exception {
assertNotNull(example("abc", '.', false).getLeftExpression()); //$NON-NLS-1$
}
public void testGetRightExpression() throws Exception {
Like like = example("abc", '.', false); //$NON-NLS-1$
assertNotNull(like.getRightExpression());
assertTrue(like.getRightExpression() instanceof Literal);
assertEquals("abc", ((Literal)like.getRightExpression()).getValue()); //$NON-NLS-1$
}