0

有人知道如何使用 GHUnit 作为测试结果创建 xml 报告吗?

我喜欢那样,但.xml文件没有出现......

GHUNIT_AUTORUN=1 WRITE_JUNIT_XML=YES xcodebuild -project Tests.xcodeproj -sdk iphonesimulator4.3 -target 测试

4

3 回答 3

0

I use:

GHUNIT_CLI=1 WRITE_JUNIT_XML=1 xcodebuild...

I think it's the '1' rather than 'YES' that makes it work.

The XML files end up in a build/test-results folder and form me it is relative to the project workspace.

于 2012-01-05T23:38:30.863 回答
0

如果您查看此处的指令集:

http://gabriel.github.com/gh-unit/docs/appledoc_include/guide_command_line.html

您需要在构建之后将运行测试脚本作为一个阶段包含在内。

于 2011-10-21T18:10:50.323 回答
0

看起来它将输出存储在 DARWIN_USER_TEMP_DIR 中,如下所示:

/var/folders/IY/IY7PGAf2F9OD6CIKr1RQo++++TI/-Tmp-/

如果您检查 RunScripts.sh 文件,您可以看到它正在保存到:

/usr/bin/getconf DARWIN_USER_TEMP_DIR
于 2011-04-22T00:38:03.720 回答