Mathieu
Mathieu

Reputation: 1175

Export unit test result into a file with Xcode

Is there a way to automate the saving of the unit test results in Xcode?

I'd like to save them into a folder each time I run them

thx

Upvotes: 1

Views: 4021

Answers (2)

Tom van der Woerdt
Tom van der Woerdt

Reputation: 29985

You'd probably want to automate the testing altogether. This isn't easy, but a hack can do this for you. You can then simply pipe the output to a file.

Upvotes: 2

Mathieu Hausherr
Mathieu Hausherr

Reputation: 3485

Use Jenkins to build your app with Xcode plugin ( https://wiki.jenkins-ci.org/display/JENKINS/Xcode+Plugin )

Jenkins can save unit test result for you or send it by mail.

Upvotes: 1

Related Questions