First, store some numbers into the symbol table, and create a collection for later.
eg.SymbolTest.ColumnFixture1 | |
input | =output? |
1 | one |
2 | two |
3 | three |
Now retrieve them via the symbol table
eg.SymbolTest.ColumnFixture2 | |
input= | output! |
one | 1 |
two | 2 |
three | 3 |
And now look at the results using the collection from ColumnFixture1
eg.SymbolTest.RowFixture1 | |
input= | output |
one | 1 |
two | 2 |
three | 3 |