Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to run a JUnit regression Test Suite from within an ANT build script. The test suite has a known number of failures which we are working towards fixing. I want the build to fail if the number of failing tests increases (or changes at all if that's easier to code) - this value can be hard coded in the ANT script.

I'm looking for details on how to implement this.

share|improve this question
What's the point of running unit tests which are known to fail? As you may know, this is against the best practice which is to keep 100% of unit tests passing all the time - and if a test fails, either fix it right away, or disable/remove it if it can't be fixed. – Péter Török Jul 29 '10 at 13:06
Good point but this is actually a regression test suite which contains 'known' failures. In time I hope these will be fixed, but at the moment we've just got around to documenting them and want to make sure we don't introduce more failures. – Tarski Jul 29 '10 at 13:20

2 Answers

up vote 0 down vote accepted

The junit task creates and XML file with the failing tests. There's no reason you couldn't use XMLTask to count the number of failures and have a conditional fail if that value is too high.

share|improve this answer
thanks I will take a look – Tarski Aug 3 '10 at 15:28

Even though I'm a bit late to the party:

Another option would be to use JUnit 4 and annotate the failing tests with @Ignore.

That way they will not run, and not count as failures, but the number of ignored tests will still be printed, reminding you there is work left to do.

If a test fails for the first time, you'll get a regular failure; then you can decide whether to fix or to ignore it.

More information:

http://www.devx.com/Java/Article/31983/1954

share|improve this answer
Thanks for your response. I hadn't encountered that annotation. Unfortunately, because I am using parametrized tests, I only want to ignore certain tests for certain parameters - I don't think JUnit is flexible enough to do this. – Tarski Oct 1 '10 at 16:20
Yes, apparently you cannot "@Ignore" just some parameters. You could comment out the failing values, and create a placeholder test that is "@Ignored", so you remember the failing values. That way you don't need to count tests... – sleske Oct 2 '10 at 17:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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