-
Notifications
You must be signed in to change notification settings - Fork 15
Description
Hi,
I am using easy test to create data driven tests. Tests are working fine with data , thanks for the nice library.
But I Am seeing one issue so I just wanted to check with you if I am missing something or this is expected.
Issue:
WHen I run test, it runs with all the data sets mentioned in the csv file but in the test log of juni where it displays with what data test is running, it displays incorrect datasets.
For example in the test results it shows this:
testName{testDataCol1 = a1, testdatacol2 = b1, testdatacol3 = c1 }
testName{testDataCol1 = a1, testdatacol2 = b1, testdatacol3 = c1 }
testName{testDataCol1 = a1, testdatacol2 = b1, testdatacol3 = c1 }
Where as in reality tests are executed for below combinations of data:
testName{testDataCol1 = a1, testdatacol2 = b1, testdatacol3 = c1 }
testName{testDataCol1 = a2, testdatacol2 = b2, testdatacol3 =c2 }
testName{testDataCol1 = a3, testdatacol2 = b3, testdatacol3 =c3 }
Can you please let me know if this is a known issue or am i missing something here?
- R