*/
@Test
public void testHugeInSmallOut() throws Exception {
Pipeline<StAXPipelineComponent> pipe = new NonCachingPipeline<StAXPipelineComponent>();
pipe.addComponent(new GeneratingStarter("root", "element", this.TEST_SIZE));
pipe.addComponent(new OmitElementTransformer("element", new ArrayList<Attribute>()));
pipe.addComponent(new XMLSerializer());
ByteArrayOutputStream out = new ByteArrayOutputStream();
pipe.setup(out);
pipe.execute();