The class that I moved these tests from was written for JUnit 4.x and used the @Test annotation. However the class that originally had these tests was written for JUnit 3.x and was extending the TestCase class and no annotations.
This meant that my perfectly legitimate test case like that looked like this...
JUnit 4.x test case
@Test(expected = MyException.class)
public void test_myExceptionThrowsTest1() throws MyException {
/* some code here that throws MyException */
}
...would always cause my build to fail when executed inside a test case designed for use with JUnit 3.x like this...
JUnit 3.x test case
public class MyTest extends TestCase {
...
}
The solution was of course not to mix the two approaches. In my case, I removed the 'extends TestCase' from the class and added @Test annotations to every other test case inside it. Once that was done, all my tests were passing again.
I've come across this article while debugging the issue above, it's worth a read when migrating from JUnit 3.x to 4.x - Junit 3 vs Junit 4 Comparison.
-i