I have a JUnit test, which uses the Parameterized runner. I have two parameters to be passed (country names) Once this Junit runs in the HTML report for each parameter it gives the result. But it gives the result with testname1[0], testname1[1]..... and so forth for parameter. (for each parameter it will add [] after test name )
I want to customize the result for example 2 parameters are Country names. I would like to have something like CountryName1 - under that testName1. Then CountryName2.. testName.
Is there a way? Thanks in advance.