/**
* A very simple pipeline that only uses a reader.
*/
public void testPipelineWithReader() throws Exception {
Pipeline pipeline = new NonCachingPipeline();
pipeline.addComponent(new FileReaderComponent(this.getClass().getResource("/test.xml")));
pipeline.setup(System.out);
pipeline.execute();
}