str =15252 Add dsl consistency spec

This commit is contained in:
Patrik Nordwall 2014-05-22 08:00:14 +02:00
parent e46319fa79
commit db5b27c17e
2 changed files with 81 additions and 4 deletions

View file

@ -169,12 +169,15 @@ public class FlowTest {
@Override
public scala.collection.immutable.Seq<String> onTermination(Option<Throwable> e) {
if (e.isEmpty()) return Util.immutableSeq(new String[0]);
else return Util.immutableSingletonSeq(e.get().getMessage());
if (e.isEmpty())
return Util.immutableSeq(new String[0]);
else
return Util.immutableSingletonSeq(e.get().getMessage());
}
@Override
public void onError(Throwable e) {}
public void onError(Throwable e) {
}
@Override
public boolean isComplete() {
@ -375,7 +378,7 @@ public class FlowTest {
if (e == null)
probe.getRef().tell("done", ActorRef.noSender());
else
probe.getRef().tell(e, ActorRef.noSender());
probe.getRef().tell(e.getMessage(), ActorRef.noSender());
}
});