public interface RunnableOnService extends NeedsRunner
TestPipeline for execution and
PAssert for validation. Example usage:
@Test
@Category(RunnableOnService.class)
public void testParDo() {
Pipeline p = TestPipeline.create();
p.apply(...);
PAssert.that(p);
p.run();
}