Skip to content

Tables

On this page the different tables which can be used in several tests are described.

ParameterTable

The parameter table is a table containing a list of parameter names and values. Each parameter should be specified in its own row. The column names of the table can be configured in the TestTableHeaderNamingConvention configuration.

Example

An example of a parameter table with the default naming convention.

| Parameter     | Value     |
| SomeParameter | SomeValue |

TestDataTable

This table is used to specify test data. For example to insert data into a table, or to specify the expected results. When using this table to insert data into a table, make sure that the column names are exactly equal to the target (case sensitive). Also only include the columns in the table you want to load. There is no need to include all columns.

Example

An example of a testdata table.

| SomeColumn         | SomeOtherColumn         |
| SomeFirstRowValue  | SomeOtherFirstRowValue  |
| SomeSecondRowValue | SomeOtherSecondRowValue |