In my opinion, it cannot be that hard. So let's try it:
@Test annotation
All methods beginning with public void test must precede the @Test annotation.
This task is easy with a regex.
Get rid of extends TestCase
Remove exactly one occurence per file of the string
" extends TestCase"
SetUp and TearDown methods
Eclipse generates following setUp() method:
@Override
protected void setUp() throws Exception { }
Must be replaced by:
@Before
protected void setUp() throws Exception { }
Same for tearDown():
@Override
protected void tearDown() throws Exception { }
replaced by
@After
protected void tearDown() throws Exception { }
Imports
The imports has to be reorganized:
- Remove
import junit.framework.TestCase;
- Add
org.junit.*; or import org.junit.After; import org.junit.Before; import org.junit.Test;
Remove main methods?
Probably it's necessary to remove/refactor existing main methods that will execute the test.
Convert suite() method to @RunWithClass
According to saua's comment, there must be a conversion of the suite() method.
Pattern will follow.
Thanks, saua!
Conclusion
I think, it's done very easy via a set of regular expressions, even if it will kill my brain ;)