public void testNull() throws IllegalFilterException {
// Test for false positive.
PropertyName testAttribute = new AttributeExpressionImpl(testSchema, "testString");
PropertyIsNull filter = fac.isNull(org.opengis.filter.expression.Expression.NIL);
assertTrue(filter.evaluate(testFeature));
filter = fac.isNull(testAttribute);
assertFalse(filter.evaluate(testFeature));
}