I have a test with several test cases, ex:
[Test]
[TestCase('Case1', '1')]
[TestCase('Case2', '2')]
[TestCase('Case3', '3')]
procedure RunTest(const aParam: integer);
I can run each test case separately including test case name in parameter, like -rMyUnit.TMyTestClass.RunTest.Case1
My question is: how to run all test cases at once, something like -rMyUnit.TMyTestClass.RunTest.*
I have tried without test case name, but no luck, it cannot find the test at all.