Options options = new Options();
options.setLabelFormat( "invalidPropertyName" );
SimpleFeatureLabelFormatter testObj = new SimpleFeatureLabelFormatter();
testObj.setUndefinedPropertyLabel( undefinedPropertyLabel );
String label = testObj.createLabel( this.feature, options );
assertEquals( undefinedPropertyLabel, label );
}
public void testNoFormat()