@Test
 public void testPropertyIsLessThanOrEqualToDate() {
   assertThat(
       testValidationQueryDelegate.propertyIsLessThanOrEqualTo(
           Metacard.ANY_TEXT, mock(Date.class)),
       is(false));
 }
 @Test
 public void testPropertyIsLessThanOrEqualToObject() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsLessThanOrEqualTo(Metacard.ANY_TEXT, (Object) 0),
       is(false));
 }
 @Test
 public void testPropertyIsLessThanOrEqualToByteArray() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsLessThanOrEqualTo(Metacard.ANY_TEXT, new byte[0]),
       is(false));
 }
 @Test
 public void testPropertyIsLessThanOrEqualToString() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsLessThanOrEqualTo(Metacard.ANY_TEXT, "helloworld"),
       is(false));
 }