@Test (expected=UnsupportedOperationException.class)
public void testEndsUnsuported() throws Exception{
FilterFactory ff = CommonFactoryFinder.getFilterFactory((Hints) null);
Ends filter = ff.ends(ff.property("date"), newSampleDate());
FilterToCQL toCQL = new FilterToCQL();
filter.accept( toCQL, null ).toString();
}