I have a JUnit test that uses a parameterized runner. I have two parameters that need to be passed (country names). When this Junit runs in an HTML report for each parameter, it gives the result. But it gives a result with the name test1 [0], testname1 [1] ..... etc. For the parameter. (for each parameter it will add [] after the test name)
I want to tune the result, for example, 2 are the names of countries. I would like to have something like CountryName1 - under this testName1. Then CountryName2 .. testName.
Is there any way? Thanks in advance.
source share