Tagged Questions

15
votes
9answers
772 views

What do you need from a test harness?

I'm one of the people involved in the Test Anything Protocol (TAP) IETF group (if interested, feel free to join the mailing list). Many programming languages are starting to adopt TAP as their ...
3
votes
3answers
88 views

Is it possbile to test for expected errors when the testee exits with failure using TAP within Perl?

Suppose you're running some unit tests and you want to see if the method ( or script or function or whatever) you're testing fails as it should. How do you setup such a test? I'm hoping for something ...
2
votes
1answer
227 views

TAP::Harness perl tests tee output

I am running my tests using TAP::Harness , when I run the tests from command line on a Linux system I get the test results on STDOUT as it is run but when i try to capture the output to a file as well ...
2
votes
2answers
156 views

TAP for NUnit?

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

perl: unobtrusively write to IO::Handle opened by TAP::Formatter::HTML

While executing actions on a web page using Test::WWW::Selenium, my perl program writes TAP testcase output to a html report created and updated by TAP::Harness. My Selenium client must log into some ...
1
vote
1answer
213 views

Can I run perl unit tests under ant jUnit task? How can I handle perl unit tests errors within ant build script?

I'd like to deploy my set of perl scripts by ant. I'm going to run perl test scripts in the ant build.xml and I want to handle perl errors. That's why I wonder, how does ant task work? Does junit ...
0
votes
3answers
192 views

perl TAP testing: how to get count of failed tests from TAP::Formatter::HTML output?

I run some TAP Tests using TAP::Formatter::HTML. This CPAN module generates beautiful dynamic HTML Reports, but I want to use the number of passed tests, failed tests etc - to insert them into a ...