@SuppressWarnings("unchecked")
@Test
public void testBloomDecos() throws FlumeSpecException, IOException,
InterruptedException {
String spec = "{ bloomGen(10000,2) => { bloomCheck(10000,2) => counter(\"test\")} } ";
EventSink snk = FlumeBuilder.buildSink(new ReportTestingContext(), spec);
EventSource src = FlumeBuilder.buildSource(LogicalNodeContext
.testingContext(), "asciisynth(10000)");
snk.open();
src.open();
EventUtil.dumpAll(src, snk);