让我给你讲讲 iOS 自动化测试的那些干货(23)

发表于:2017-03-10来源:csdn作者:LeoMobileDeveloper点击数: 标签:iOS
并行测试多个bundle,大大提高测试效率。 安装XCTool, brew install xctool 1 1 使用 path/ to /xctool . sh \ -workspace YourWorkspace . xcworkspace \ -scheme YourScheme \ -reporter plai
并行测试多个bundle,大大提高测试效率。

安装XCTool,

brew install xctool
  • 1
  • 1

使用

path/to/xctool.sh \
  -workspace YourWorkspace.xcworkspace \
  -scheme YourScheme \
  -reporter plain:/path/to/plain-output.txt \
  run-test
  • 1
  • 2
  • 3
  • 4
  • 5
  • 1

    原文转自:http://blog.csdn.net/hello_hwc/article/details/60957515