Hi there
I have a project that uses a WPF client to place information in a database, the information is then viewable in the form of reports presented in a browser session. I have a web test that can test the contents of the reports, I also have a WPF tests that tests the importing of the data. The import test is a data driven test that is capable of importing different data with each iteration, the reports test is data independent and can validate the reports regardless of their contents.
My question is how can I get the 2 tests to work together?
Ideally I would like to call the web test as a step of the WPF test, but this doesn’t seem to be allowed in test studio so is there some other way that I can get the same results?
what I want is;
run first iteration of WPF test
run web test
run second iteration of WPF test
run web test
...and so on