* @throws ClassNotFoundException
* @throws IllegalAttributeException
*/
public void ztestComplexMarshall()
throws IOException, ClassNotFoundException, IllegalAttributeException {
Generator gen = new Generator(1000, 1000);
SimpleFeature f = gen.createFeature(0);
SimpleFeatureMarshaller m = new SimpleFeatureMarshaller();
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(baos);
m.marshall(f, oos);