* @throws InterruptedException
*/
@Test
public void testSelectBuilder() throws IOException, FlumeSpecException, InterruptedException {
EventSink snk =
new CompositeSink(new Context(),
"{ select(\"foo\", \"bar\",\"bork\") => counter(\"count\") }");
snk.open();
Event e = new EventImpl("content".getBytes());
Attributes.setString(e, "foo", "foo data");
Attributes.setString(e, "bar", "bar data");