@Test
public void functionCallWithSequentialArgumentProcessingEmbedded2() throws Exception {
buildInstructionsFor("|set name|Marisa|department|QA|title and length of employment;|Tester|2 years|\n", false);
List<CallInstruction> expectedInstructions =
asList(
new CallInstruction("scriptTable_id_0", "scriptTableActor", "setNameDepartmentTitleAndLengthOfEmployment", new Object[]{"Marisa", "QA", "Tester", "2 years"})
);
assertEquals(expectedInstructions, instructions());
}