Skip to content
Snippets Groups Projects

Feature: JavaHandler

Merged René Schöne requested to merge feature/java-handler into dev
2 files
+ 58
53
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -103,11 +103,6 @@ public class JavaTest {
;
communicateBoth();
handler.push(TOPIC_RECEIVE_TOKEN, ExposingASTNode.INSTANCE.stringToBytes("7"));
checker.put(TOPIC_RECEIVE_TOKEN, "7").check();
System.out.println(model.ragconnectEvaluationCounterSummary());
}
@Test
@@ -138,6 +133,13 @@ public class JavaTest {
senderRoot.addSendManyNode(createA("5"));
checker.put(TOPIC_SEND_MANY, tuple("5")).check();
handler.push(TOPIC_RECEIVE_TOKEN, ExposingASTNode.INSTANCE.stringToBytes("7"));
checker.put(TOPIC_RECEIVE_TOKEN, "7").check();
// TODO check other receive ports
System.out.println(model.ragconnectEvaluationCounterSummary());
}
private void checkA(String expectedValue, A actual, String alias) {
Loading