If anyone has bright ideas on this, it would make me very happy.
We have lists of tests that need to be executed - those lists change a lot, so it's no use making run configurations out of them. I'd need a way to feed this list to a script/batchfile/Ranorex, and have Ranorex execute them together (so they'll end up in the same report) - the tc flag for the commandline just takes one TestCase, if i understand it correctly, and triggering them serially would produce individual reports on every TC - has anybody solved something similar?
List of Testcases - Execute
Re: List of Testcases - Execute
Hi loonquawl,
You could do the following:
1. Have a run configuration with nothing selected.
2. Create a text file with the name of the test cases to be executed and read the file in code.
3. In the setup of the test suite have a code module that enables the test cases that are in the file:
TestSuite.Current.GetTestContainer(Testcasenaam).Checked = true;
Can you manage the code yourself or do your need help?
Would this help?
Regards,
McTurtle
You could do the following:
1. Have a run configuration with nothing selected.
2. Create a text file with the name of the test cases to be executed and read the file in code.
3. In the setup of the test suite have a code module that enables the test cases that are in the file:
TestSuite.Current.GetTestContainer(Testcasenaam).Checked = true;
Can you manage the code yourself or do your need help?
Would this help?
Regards,
McTurtle
Re: List of Testcases - Execute
Should have known this was accessible programatically. Thanks a lot!