*
* @throws InterruptedException
*/
@Test
public void testLoad() throws IOException, InterruptedException {
SimpleRegexReporterBuilder b = new SimpleRegexReporterBuilder(
getClass().getClassLoader()
.getResource(APACHE_REGEXES).getFile());
Collection<RegexGroupHistogramSink> sinks = b.load();
MultiReporter mr = new MultiReporter("apache_sinks", sinks);
mr.open();
mr.append(new EventImpl(sample.getBytes()));
for (EventSink r : sinks) {