1

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

Mathieu
  • 1,175
  • 4
  • 19
  • 34

2 Answers2

2

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.

Tom van der Woerdt
  • 29,532
  • 7
  • 72
  • 105
1

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.

Mathieu Hausherr
  • 3,485
  • 23
  • 30