assertEquals(targetType, complexFeature.getType());
features.close();
org.opengis.filter.FilterFactory ff = CommonFactoryFinder.getFilterFactory(null);
PropertyName expr;
Object value;
expr = ff.property("measurement[1]");
value = expr.evaluate(complexFeature);
assertNotNull(value);
expr = ff.property("measurement[1]/parameter");
value = expr.evaluate(complexFeature);
assertNotNull(value);
expr = ff.property("measurement[1]/value");
value = expr.evaluate(complexFeature);
assertNotNull(value);
expr = ff.property("measurement[2]/parameter");
value = expr.evaluate(complexFeature);
assertNotNull(value);
expr = ff.property("measurement[2]/value");
value = expr.evaluate(complexFeature);
assertNotNull(value);
expr = ff.property("measurement[3]/parameter");
value = expr.evaluate(complexFeature);
assertNotNull(value);
expr = ff.property("measurement[3]/value");
value = expr.evaluate(complexFeature);
assertNotNull(value);
}