The problem was, that the class in which the test was nested was an extension of TestCase
. Since this is JUnit 3 style, the annotation didn’t work.
Now my test class is a class on its own.
The problem was, that the class in which the test was nested was an extension of TestCase
. Since this is JUnit 3 style, the annotation didn’t work.
Now my test class is a class on its own.