Export unit test result to file with Xcode

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

I would like to save them to a folder every time I run them

THX

+1
source share
2 answers

You probably want to fully automate testing. It’s not easy, but hacking can do it for you. Then you can simply transfer the output to a file.

+2
source

Using Jenkins to build your application using the Xcode plugin ( https://wiki.jenkins-ci.org/display/JENKINS/Xcode+Plugin )

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

+1
source

Source: https://habr.com/ru/post/1401112/


All Articles