我使用 XCUITest 为我的 iOS UI 自动化进行了所有设置,我可以通过运行单个测试套件
xcodebuild test -project <path> -scheme <name> -destination <specifier> -only-testing:TestBundle/TestSuiteName
我也使用了这个命令
xcodebuild test -workspace <path> -scheme <name> -destination <specifier> -only-testing:TestBundle/TestSuiteName/TestCase1 -only-testing:TestBundle/TestSuiteName/TestCase2
使用它我运行这两个测试,但它们仍然按字母顺序执行,而不是我在命令中指定它们的顺序。
有没有办法我可以决定我的测试用例执行顺序?有没有办法可以通过命令行运行单个/可选的测试用例?
我知道我们可以使用类似 testInvocation 的方法来解决我的问题,但我不明白如何。我正在使用迅速。
有人可以帮我在这里..提前谢谢!