@Test
 public void testPropertyIsGreaterThanObject() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsGreaterThan(Metacard.ANY_TEXT, (Object) 0),
       is(false));
 }
 @Test
 public void testPropertyIsGreaterThanByteArray() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsGreaterThan(Metacard.ANY_TEXT, new byte[0]),
       is(false));
 }