public void testFeatureCollection() throws Exception {
Geometry poly = new WKTReader().read("POLYGON((0 0, 0 10, 10 10, 10 0, 0 0))");
CoordinateReferenceSystem utm32n = CRS.decode("EPSG:32632");
poly.setUserData(utm32n);
SimpleFeatureCollection fc = new FeatureProcess().execute(poly, null, "testft");
assertNotNull(fc);
assertEquals(1, fc.size());
SimpleFeatureType schema = fc.getSchema();
assertEquals("testft", schema.getTypeName());
assertEquals(1, schema.getAttributeCount());