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

link|improve this question

79% accept rate
feedback

2 Answers

up vote 2 down vote accepted

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.

link|improve this answer
great I'll go with that. thx – Mathieu Feb 22 at 17:09
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.