The symbol save operator can be used in any expected value cell. Instead of comparing the actual value to an expected value, the actual value is saved with the symbol name.
| CellHandlerStory | |
| string | string? |
| something | >>mysymbol something |
| null | >>nullsymbol null |
The symbol recall operator can be used in any input or expected value cell. The value used will be the last value saved with the symbol name.
| CellHandlerStory | |
| string | string? |
| something | < |
| < | something |
| <<nullsymbol null | null |
| null | <<nullsymbol null |
Symbols are now also used, by default, with FitLibrary fixtures.
| InfoFixture | ||
| set | result | 6 |
| check | result | >>six 6 |
| set | result | <<six 6 |
| check | result | <<six 6 |
Symbols can be erased with the Clear Symbols Fixture.
Notes:
This is a seperate feature from the FitNesse wiki symbol feature.