public void testRenderEmptyLine() throws SchemaException, IllegalAttributeException {
GeometryFactory gf = new GeometryFactory();
StyleBuilder sb = new StyleBuilder();
SimpleFeatureType pointType = DataUtilities.createType("emptyLines", "geom:LineString,name:String");
SimpleFeature f = SimpleFeatureBuilder.build(pointType, new Object[] {gf.createLineString((Coordinate[]) null), "name" }, null);
Style style = sb.createStyle(sb.createLineSymbolizer());
renderEmptyGeometry(f, style);
}
public void testRenderEmptyCollection() throws SchemaException, IllegalAttributeException {