Conditional skipping of unit tests

200 Views Asked by At

I'm currently working on a class, dealing with network issues. Using JUnit 3.8.1 and having a hardware device, that's not always around to test against, I'd like to conditionally suppress individual tests. Is there a way to achive this with a simple annotation like @if(!gatewayAvailable) -> test's suppressed?

Thanx for any pointers, marcus

1

There are 1 best solutions below

1
On BEST ANSWER

There is no such feature in JUnit 3.8.1. You have to use JUnit4 and its Assume class.