The options in the Global section of a test fixture file are the same as the options as the test runner syntax. The test case-specific options that you can use in a test fixture file are:
- description
- A text description. This can be used to describe the test, instructions to take upon failure, etc...
- description=This test should take no more than 10 seconds
- timeout
- The time limit in which the test case should run. A non-zero return code is returned if the timeout is reached.
- You can specify the time in seconds (s) or milliseconds (ms). The timeout must be set to at least 3 seconds.
- timeout=500ms
- skipped
- Determines if the test case is skipped or not; permissible options are true or false.
- skipped=true