use of org.apache.heron.streamlet.impl.streamlets.SpoutStreamlet in project heron by twitter.
the class StreamletImplTest method testSpoutStreamlet.
@Test
public void testSpoutStreamlet() {
TestSpout spout = new TestSpout();
Streamlet<Double> streamlet = builder.newSource(spout);
assertTrue(streamlet instanceof SpoutStreamlet);
}
Aggregations