In our project I have several JUnit tests that e.g. take every file from a directory and run a test on it. If I implement a testEveryFileInDirectory method in the TestCase this shows up as only one test that may fail or succeed. But I am interested in the results on each individual file. How can I write a TestCase / TestSuite such that each file shows up as a separate test e.g. in the graphical testrunner of eclipse? (Coding an explicit test method for each file is not an option.)
|
4
|
|
|
|
|
|
Take a look at Parameterized Tests in JUnit 4. Actually I did this a few days ago. I'll try to explain ... First build your test class normally, as you where just testing with one input file. Decorate your class with:
Build one constructor that takes the input that will change in every test call (in this case it may be the file itself) Then, build a static method that will return a
Here's a sample class.
Also check this example |
|||
|
|
|
Should be possible in JUnit 3 by inheriting from In JUnit 4 it might be even easier. |
||
|
|
|
|
What you seem to have is data-driven tests.. NUnit has this in the form of RowTest extensions (originally from MbUnit).
Don't know if this was implemented for JUnit in some other name. If you don't find anything, use a collecting parameter as shown below. (Won't still show up in the GUI as different tests though.)
Usually tests should not take in any parameters. But every rule has exceptions... I'd go for this in case of some sanity/regression testing. Otherwise a distinct test case for each significantly different dataset is what I'd recommend. |
|||
|
|
|
JUnit 3
JUnit 4
|
||
|
|
