@Test
 public void testPropertyIsBetweenDate() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsBetween(
           Metacard.ANY_TEXT, mock(Date.class), mock(Date.class)),
       is(false));
 }
 @Test
 public void testPropertyIsBetweenString() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsBetween(
           Metacard.ANY_TEXT, "helloworld", "helloworld"),
       is(false));
 }
 @Test
 public void testPropertyIsBetweenObject() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsBetween(Metacard.ANY_TEXT, (Object) 0, (Object) 0),
       is(false));
 }
 @Test
 public void testPropertyIsBetweenByteArray() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsBetween(Metacard.ANY_TEXT, new byte[0], new byte[0]),
       is(false));
 }