TestInput<Ex2> in2 = tester.input(Ex2.class, "ex2", dataSize);
TestOutput<Ex1> high = tester.output(Ex1.class, "high");
TestOutput<Ex1> low = tester.output(Ex1.class, "low");
TestOutput<Ex1> stop = tester.output(Ex1.class, "stop");
Ex1 ex1 = new Ex1();
Ex2 ex2 = new Ex2();
// high
ex1.setStringAsString("high");
ex1.setValue(11);
ex2.setStringAsString("high");
ex2.setValue(20);
in1.add(ex1);
in2.add(ex2);
// low
ex1.setStringAsString("low");
ex1.setValue(50);
ex2.setStringAsString("low");
ex2.setValue(-20);
in1.add(ex1);
in2.add(ex2);
// stop
ex1.setStringAsString("0-stop");
ex1.setValue(10);
ex2.setStringAsString("0-stop");
ex2.setValue(-10);
in1.add(ex1);
in2.add(ex2);
// missing master
ex1.setStringAsString("1-missing");
ex1.setValue(1000);
ex2.setStringAsString("2-missing");
ex2.setValue(-1);
in1.add(ex1);
in2.add(ex2);