Anyone know uf there's a dll/runner anywhere that returns TAP output from an NUnit test suite?

link|improve this question

38% accept rate
This should also be tagged “testing” I think. – Aristotle Pagaltzis Sep 16 '08 at 13:16
@aristotle: Done. – GEOCHET Sep 16 '08 at 19:54
feedback

2 Answers

Seems unlikely to me, since there is an impedance mismatch. TAP has no concept for what NUnit calls a test, and what TAP calls a test usually corresponds to an NUnit assertion, but not precisely. So I’m not sure how the thing you’re looking for would work at all. (But maybe a heuristic could work well enough.)

link|improve this answer
feedback

At the very least, a simple pass/fail for each TestFixture run would allow the output to be sucked into other TAP results for aggregating results/reports. Maybe it's as simple as a xslt to transform the xml report into TAP

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.