Welcome to the new Parasoft forums! We hope you will enjoy the site and try out some of the new features, like sharing an idea you may have for one of our products or following a category.
I want to iterate rows from table with rows from writable in following manner
Suppose my table has T1 , T2, T3 rows and my writable has W1 , W2, W3 rows so now I want to pass T1 = W1 in first iteration , T2 = W2 in second iteration and T3 = W3 in third iteration.
But currently it is passing first row of table to all rows of writable which is not valid scenario bfor my functionality. So anyone tell me how to do it.
Tagged:
0
Best Answer
-
Pick the "Flat (lockstep)" option in the test suite.
There is good explanation in the docs.5
Answers
-
If I understand your scenario correctly, try using an aggregate data source. That will cause the two data sources to behave like a single data source with the two data sources "side by side".
0 -
Flat(lockstep) option worked for me.
thank you0