@Test
public void tableWithSetSymbolReturnVariableInResult() throws Exception {
makeTableTableAndBuildInstructions(tableTableHeader + "|$A=|$B=|$C=|$D=|$E=|$F=|\n");
TableTable.TableTableExpectation expectation = tt.new TableTableExpectation();
TestResult result = expectation.evaluateExpectation(asList(asList("pass:1", "ignore:2", "fail:3", "sole:l", "no change", "pass")));
assertNotNull(result.getVariablesToStore());
assertEquals("1", result.getVariablesToStore().get("A"));
assertEquals("2", result.getVariablesToStore().get("B"));
assertEquals("3", result.getVariablesToStore().get("C"));
assertEquals("sole:l", result.getVariablesToStore().get("D"));
assertNull(result.getVariablesToStore().get("E"));
assertNull(result.getVariablesToStore().get("F"));
}