Column Fixture Math.Calculator |
value1 | value2 | Sum() | Product() | Exponent() |
3 | 2 | 5 | 6 | 9 |
12 | 4 | 18 | 48 | 20736 |
The first row is the fully qualified name of the type (namespace+class) being tested.
The second row has argument names followed by procedures denoted by the ().
The following rows has the values for the arguments and the expected results of the procedures.
Wards' Wiki Column Fixture page
After running the test it would look like this.
Math.Calculator |
value1 | value2 | Sum() | Product() | Exponent() |
3 | 2 | 5 | 6 | 9 |
12 | 4 | Expected 18 |
Actual 16 | 48 | 20736 |
Checkout a live example on the
test site where the test fixtures are being developed. Just click the 'Run Tests' link to run the test and see the results.