下面的代码是我的 groovy 脚本的一部分,它在soapUI 中执行一个测试用例。
def testCase = testRunner.testCase.testSuite.testCases["TestCase"];
def properties = new com.eviware.soapui.support.types.StringToObjectMap();
def async = false;
testCase.run(properties, async);
执行此代码后,测试用例执行正常开始,但并没有停止。假设测试用例中有 13 个测试步骤。一旦我运行了那个 groovy 脚本,它就会从 1 到 13 开始,然后从 1 到 13 等等。直到我关闭整个soapUI 应用程序。
有没有办法打破循环?
提前致谢。