01-23-2008, 05:53 PM
I thought it might help to give you a better understanding of what I'm trying to do:
I need to test 2 applications: SAP and X
The test should be in the order:
"Test SAP with data1" --> "Test X with data produced by SAP with data1"
After this iteration, the next iteration follows:
"Test SAP with data2" --> "Test X with data produced by SAP with data2"
...
Now, as there is a delay between the SAP and X-test, I would like to let the test sleep after being done with SAP and wait for all SAP-tests to be executed first. Afterwards the X-tests should start:
"Test SAP with data1" --> wait for other SAP-tests to be ready
"Test SAP with data2" --> wait...
All SAP-tests ready
--> "Test X with SAP-result1"
--> "Test X with SAP-result2"
I tried to split the test in 2 tests (SAP and X) and have them executed seperately, but this had the effect of not showing a dependency of the status of "Test X with data1" and "SAP with data1".
The result just showed that the SAP-test failed and seperately showed that the X-test failed... but not that X-test1 failed because SAP test1 had an error...
I hope my point is somehow clearer now, and I hope somebody has a solution for this. :-)
I need to test 2 applications: SAP and X
The test should be in the order:
"Test SAP with data1" --> "Test X with data produced by SAP with data1"
After this iteration, the next iteration follows:
"Test SAP with data2" --> "Test X with data produced by SAP with data2"
...
Now, as there is a delay between the SAP and X-test, I would like to let the test sleep after being done with SAP and wait for all SAP-tests to be executed first. Afterwards the X-tests should start:
"Test SAP with data1" --> wait for other SAP-tests to be ready
"Test SAP with data2" --> wait...
All SAP-tests ready
--> "Test X with SAP-result1"
--> "Test X with SAP-result2"
I tried to split the test in 2 tests (SAP and X) and have them executed seperately, but this had the effect of not showing a dependency of the status of "Test X with data1" and "SAP with data1".
The result just showed that the SAP-test failed and seperately showed that the X-test failed... but not that X-test1 failed because SAP test1 had an error...
I hope my point is somehow clearer now, and I hope somebody has a solution for this. :-)