TAP Results¶
Purpose¶
Rapise supports the Test Anything Protocol (TAP). TAP specifies communication between unit tests and testing frameworks, such as Visual Studio MS-Test or NUnit.
Usage¶
The results of a Rapise test are saved to a TAP file in the same directory as the test. Tap files have a .tap extension.
TAP’s general format is:
1 2 3 4 5 6 7 |
|
For example, a test file’s output might look like:
1 2 3 4 5 |
|
Example¶
An example Rapise .TAP file looks like the following:
1 2 3 4 5 6 |
|
See Also¶
- More information about tap is available at the TAP wiki: www.testanything.org
- Visual Studio Unit Testing (MS-Test)
- NUnit