"|user name|password|pin|\n" +
"|bob|xyzzy|7734|\n" +
"|bill|yabba|8892|\n"
);
List<CallInstruction> expectedInstructions =
asList(new CallInstruction("decisionTable_did_0/scriptTable_s_id_0", "scriptTableActor", "loginWithPasswordAndPin", new Object[]{"bob", "xyzzy", "7734"}), new CallInstruction("decisionTable_did_1/scriptTable_s_id_0", "scriptTableActor", "loginWithPasswordAndPin", new Object[]{"bill", "yabba", "8892"}));
assertEquals(expectedInstructions, instructions());
}