Does anyone know how to check if a new row is added to a table, when the row index of the new entry can vary?
I'm testing a procedure for adding a new row containing text strings to a table. The row index for the new entry can vary depending on the text string supplied and how the table is sorted.
Any ideas?
Your help is greatly appreciated!
Thanks
I suppose i can use a check point to verify the textstring i added is at row i column j of the datatable, then iterate i and j to check the entire table.
However, even if the data is inserted correctly into the table, the test result will come out as i*j-1 fails and 1 pass.
This will make the text results hard to read, so i'm looking for an alternative way to check.
I'm testing a procedure for adding a new row containing text strings to a table. The row index for the new entry can vary depending on the text string supplied and how the table is sorted.
Any ideas?
Your help is greatly appreciated!
Thanks
I suppose i can use a check point to verify the textstring i added is at row i column j of the datatable, then iterate i and j to check the entire table.
However, even if the data is inserted correctly into the table, the test result will come out as i*j-1 fails and 1 pass.
This will make the text results hard to read, so i'm looking for an alternative way to check.