我有几个测试用例的测试,例如:
[Test]
[TestCase('Case1', '1')]
[TestCase('Case2', '2')]
[TestCase('Case3', '3')]
procedure RunTest(const aParam: integer);
我可以分别运行每个测试用例,包括参数中的测试用例名称,例如-rMyUnit.TMyTestClass.RunTest.Case1
我的问题是:如何一次运行所有测试用例,例如-rMyUnit.TMyTestClass.RunTest。*
我试过没有测试用例名称,但没有运气,它根本找不到测试。