which is used as a materialized value for Sources/Sinks that work with IO.
This commit is contained in:
Martynas Mickevičius 2016-01-21 18:06:42 +02:00
parent 53ad1085ec
commit f2553eb3b6
22 changed files with 278 additions and 92 deletions

View file

@ -106,7 +106,7 @@ public class SourceTest extends StreamTest {
probe.expectMsgEquals("a");
probe.expectMsgEquals("b");
probe.expectMsgEquals("c");
probe.expectMsgEquals("()");
probe.expectMsgEquals("Done");
}
@Ignore("StatefulStage to be converted to GraphStage when Java Api is available (#18817)") @Test
@ -300,7 +300,7 @@ public class SourceTest extends StreamTest {
}
}), materializer);
probe.expectMsgClass(NotUsed.class);
probe.expectMsgClass(Done.class);
}
@Test