我今天正在使用 Instruments 中的自动化工具,但在编写工作测试时遇到了问题。以下示例将退出Issue: Script ended without explicting closing this test
。是的,该消息确实说显式。我认为这是最近版本的 Xcode 中引入的一个错字。这是我第一次尝试使用这个工具。设置cellCount
为 6 会导致通过,但任何东西都会给我“脚本结束”消息。我做错了还是自动化工具有错误。
UIALogger.logStart("Start Simple Test");
var target = UIATarget.localTarget();
var cellCount = 7;
UIALogger.logMessage("cell count: " + cellCount);
if (cellCount != 6) {
UIALogger.logFail("Failed");
}
UIALogger.logPass("Passed");