// countWords(p.readResourceFile("simple-text.txt"));
}
@Test
public void lazyAvroWordCount() throws IOException {
Plume p = new LazyPlume();
String file = Resources.getResource("simple-text.avro").getPath();
countWords(p.readAvroFile(file, strings()));
}