I have 2 string arrays in a class.
I have a TestNG class in which I need to compare the values of those arrays in a Test method. The idea is, I should loop my Test method for n
number of times where n = {size of one of the arrays}
@Test(invocationCount = {fixedCount})
does not work for me, since size of the array varies.
Please let me know if I have to provide some more information.