I have a bunch of JUnit 3 classes which extend TestCase and would like to automatically migrate them to be JUnit4 tests with annotations such as @Before, @After, @Test, etc.
Any tool out there to do this in a big batch run?
|
feedback
|
|
In my opinion, it cannot be that hard. So let's try it: @Test annotationAll methods beginning with Get rid of
|
I don't think, that he wants to do this with a bunch of files. And they should be runnable. – furtelwart Mar 24 '09 at 13:23 |
|||
|
I'd add conversion of suite() methods to @RunWith(Suite.class) @SuiteCkasses() – Joachim Sauer Mar 27 '09 at 13:12 |
||
|
|||
|
Here are the actual regular expressions I used to execute furtelwart's suggestions:
| |||
|
feedback
|
|
I don't know of a tool that would do this at the moment - I'd expect Eclipse to provide some plugin fairly shortly - but you could knock up a simple source tree exploring Java class that would do it for you if you only want to do a basic conversion. I had to write something similar to automatically generate skeleton test cases for a legacy application so I've got a fair amount of the support code already. You're welcome to use it. | |||
feedback
|
|
There are, to my best knowledge, no available migration tools (yet). What I know is this:
I hope this information was of help for you. | |||
|
feedback
|
|
Nice post. I did the upgrade using Netbeans with the following RegEx strings: (First line search-string, second one replace-string)
Don't forget to flag the Regular Expression checkbox! | |||
|
feedback
|
TestSuite, in which case you're stuffed. – skaffman Oct 30 '09 at 9:53