0
comment
comment
on 8/14/2014 12:23 AM
The Test Anything Protocol (TAP) is a text-based protocol for test results: 1..4
ok 1 - Input file opened
not ok 2 - First line of the input valid
ok 3 - Read the rest of the file
not ok 4 - Summarized correctly # TODO Not written yet
I think the idea is an good one, a simple cross-platform human readable standard for formatting test results. There are TAP producers and consumers for Perl, Java, JavaScript etc. allowing you to join up tests for cross-platform projects.
NUnit runner
Over the las[...]