Igor Kromin |   Consultant. Coder. Blogger. Tinkerer. Gamer.

In a big code porting project recently I had to move a number of unit tests from one class over to another. I didn't give it a second thought beyond that until it came to running the build. Compilation was successful, however JUnit execution failed on the tests I moved. Odd. At first I thought maybe I accidentally changed some code, but no, all the code was the same. Then I realised what the problem was.

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

A quick disclaimer...

Although I put in a great effort into researching all the topics I cover, mistakes can happen. Use of any information from my blog posts should be at own risk and I do not hold any liability towards any information misuse or damages caused by following any of my posts.

All content and opinions expressed on this Blog are my own and do not represent the opinions of my employer (Oracle). Use of any information contained in this blog post/article is subject to this disclaimer.
Hi! You can search my blog here ⤵
NOTE: (2022) This Blog is no longer maintained and I will not be answering any emails or comments.

I am now focusing on Atari Gamer.