@Test
 public void testPropertyIsBetweenString() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsBetween(
           Metacard.ANY_TEXT, "helloworld", "helloworld"),
       is(false));
 }
 @Test
 public void testPropertyIsLessThanOrEqualToDate() {
   assertThat(
       testValidationQueryDelegate.propertyIsLessThanOrEqualTo(
           Metacard.ANY_TEXT, mock(Date.class)),
       is(false));
 }
 @Test
 public void testPropertyIsGreaterThanOrEqualToDate() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsGreaterThanOrEqualTo(
           Metacard.ANY_TEXT, mock(Date.class)),
       is(false));
 }
 @Test
 public void testPropertyIsBetweenDate() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsBetween(
           Metacard.ANY_TEXT, mock(Date.class), mock(Date.class)),
       is(false));
 }
 @Test
 public void testPropertyIsFuzzy() {
   assertThat(
       testValidationQueryDelegate.propertyIsFuzzy(Metacard.ANY_TEXT, "helloworld"), is(false));
 }
 @Test
 public void testPropertyIsNullFalse() throws UnsupportedQueryException {
   assertThat(testValidationQueryDelegate.propertyIsNull("test"), is(false));
 }
 @Test
 public void testPropertyIsNotEqualToShort() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsNotEqualTo(Metacard.ANY_TEXT, (short) 0), is(false));
 }
 @Test
 public void testDuring() {
   assertThat(
       testValidationQueryDelegate.during(Metacard.ANY_TEXT, mock(Date.class), mock(Date.class)),
       is(false));
 }
 @Test
 public void testWithin() {
   assertThat(testValidationQueryDelegate.within(Metacard.ANY_TEXT, "thisisaWKT"), is(false));
 }
 @Test
 public void testIntersects() {
   assertThat(testValidationQueryDelegate.intersects(Metacard.ANY_TEXT, "thisisaWKT"), is(false));
 }
 @Test
 public void testBeyond() {
   assertThat(
       testValidationQueryDelegate.beyond(Metacard.ANY_TEXT, "thisisaWKT", (double) 0), is(false));
 }
 @Test
 public void testPropertyIsLessThanOrEqualToDouble() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsLessThanOrEqualTo(Metacard.ANY_TEXT, (double) 0),
       is(false));
 }
 @Test
 public void testPropertyIsLessThanFloat() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsLessThan(Metacard.ANY_TEXT, (float) 0), is(false));
 }
 @Test
 public void testPropertyIsGreaterThanLong() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsGreaterThan(Metacard.ANY_TEXT, (long) 0), is(false));
 }
 @Test
 public void testXpathExists() {
   assertThat(testValidationQueryDelegate.xpathExists("some/xpath/"), is(false));
 }
 @Test
 public void testXpathIsFuzzy() {
   assertThat(testValidationQueryDelegate.xpathIsFuzzy("some/xpath/", "helloworld"), is(false));
 }
 @Test
 public void testPropertyIsBetweenByteArray() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsBetween(Metacard.ANY_TEXT, new byte[0], new byte[0]),
       is(false));
 }
 @Test
 public void testDisjoint() {
   assertThat(testValidationQueryDelegate.disjoint(Metacard.ANY_TEXT, "thisisaWKT"), is(false));
 }
 @Test
 public void testPropertyIsBetweenObject() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsBetween(Metacard.ANY_TEXT, (Object) 0, (Object) 0),
       is(false));
 }
 @Test
 public void testOverlaps() {
   assertThat(testValidationQueryDelegate.overlaps(Metacard.ANY_TEXT, "thisisaWKT"), is(false));
 }
 @Test
 public void testPropertyIsNullTrueValidationErrors() throws UnsupportedQueryException {
   assertThat(testValidationQueryDelegate.propertyIsNull(VALIDATION_ERRORS), is(true));
 }
 @Test
 public void testBefore() {
   assertThat(testValidationQueryDelegate.before(Metacard.ANY_TEXT, mock(Date.class)), is(false));
 }
 @Test
 public void testPropertyIsNullTrueValidationWarnings() throws UnsupportedQueryException {
   assertThat(testValidationQueryDelegate.propertyIsNull(VALIDATION_WARNINGS), is(true));
 }
 @Test
 public void testRelative() {
   assertThat(testValidationQueryDelegate.relative(Metacard.ANY_TEXT, (long) 0), is(false));
 }
 @Test
 public void testPropertyIsEqualToStringCaseSensitive() throws UnsupportedQueryException {
   assertThat(
       testValidationQueryDelegate.propertyIsEqualTo(Metacard.ANY_TEXT, "helloworld"), is(false));
 }