Is there a way to set my own custom test case names when using parameterized tests in JUnit4?
I'd like to change the default — [Test class].runTest[n] — to something meaningful.
|
Is there a way to set my own custom test case names when using parameterized tests in JUnit4? I'd like to change the default — |
||||
|
|
|
Looking at JUnit 4.5, its runner clearly doesn't support that, as that logic is buried inside a private class inside the Parameterized class. You could not use the JUnit Parameterized runner, and create your own instead which would understand the concept of names (which leads to the question of how you might set a name ...). From a JUnit perspective, it would be nice if instead of (or in addition to) just passing an increment, they would pass the comma delimited arguments. TestNG does this. If the feature is important to you, you can comment on the yahoo mailing list referenced at www.junit.org. |
|||||||||||||||||||||
|
|
This feature has made it into JUnit 4.11. To use change the name of parameterized tests, you say:
For example (from the unit test for the
will give names like |
|||||||||||||||||
|
|
I recently came across the same problem when using JUnit 4.3.1. I implemented a new class which extends Parameterized called LabelledParameterized. It has been tested using JUnit 4.3.1, 4.4 and 4.5. It reconstructs the Description instance using the String representation of the first argument of each parameter array from the @Parameters method. You can see the code for this at: http://code.google.com/p/migen/source/browse/trunk/java/src/.../LabelledParameterized.java?r=3789 and an example of its use at: http://code.google.com/p/migen/source/browse/trunk/java/src/.../ServerBuilderTest.java?r=3789 The test description formats nicely in Eclipse which is what I wanted since this makes failed tests a lot easier to find! I will probably further refine and document the classes over the next few days/weeks. Drop the '?' part of the URLs if you want the bleeding edge. :-) To use it, all you have to do is copy that class (GPL v3), and change @RunWith(Parameterized.class) to @RunWith(LabelledParameterized.class) assuming the first element of your parameter list is a sensible label. I don't know if any later releases of JUnit address this issue but even if they did, I can't update JUnit since all my co-developers would have to update too and we have higher priorities than re-tooling. Hence the work in the class to be compilable by multiple versions of JUnit. Note: there is some reflection jiggery-pokery so that it runs across the different JUnit versions as listed above. The version specifically for JUnit 4.3.1 can be found here and, for JUnit 4.4 and 4.5, here. |
|||||||||||||
|
|
With It also doesn't use arrays because I hate arrays. :)
And an example:
|
|||
|
|
|
You may also want to try JUnitParams: http://code.google.com/p/junitparams/ |
|||
|
|
|
from junit4.8.2, you can create your own MyParameterized class by simply copy Parameterized class. change the getName() and testName() methods in TestClassRunnerForParameters. |
|||
|
|
You can create a method like
While I wouldn't use it all the time it would be useful to figure out exactly which test number 143 is. |
|||
|
|
|
None of it was working for me, so I got the source for Parameterized and modified it create a a new test runner. I didn't have to change much but IT WORKS!!!
|
|||
|
|
|
I make extensive use of static import for Assert and friends, so it is easy for me to redefine assertion:
For example, you could add a "name" field to your test class, initialized in the constructor, and display that on test failure. Just pass it in as the first elements of your parameters array for each test. This also helps label the data:
|
|||
|
|
Check out JUnitParams as dsaff mentioned, works using ant to build parameterized test method descriptions in the html report. This was after trying LabelledParameterized and finding that it although it works with eclipse it does not work with ant as far as the html report is concerned. Cheers, |
||||
|
|