@Test
 public void testPropertyIsGreaterThanOrEqualToDate() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsGreaterThanOrEqualTo(
           Metacard.ANY_TEXT, mock(Date.class)),
       is(false));
 }
 @Test
 public void testPropertyIsGreaterThanOrEqualToByteArray() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsGreaterThanOrEqualTo(Metacard.ANY_TEXT, new byte[0]),
       is(false));
 }
 @Test
 public void testPropertyIsGreaterThanOrEqualToString() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsGreaterThanOrEqualTo(Metacard.ANY_TEXT, "helloworld"),
       is(false));
 }