Export Xcode Usage Data

Is there a way to access the data obtained by collecting code coverage statistics from your unit tests in a text / command line or a way to export data to another format? Are there any third party libraries that I can use? I am using Swift in Xcode 7.1.

+8
source share
1 answer

You can check out slather at the link below, which is an open source reporting tool for Xcode code coverage data. It generates reports in xml and html formats

https://github.com/SlatherOrg/slather

0
source

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


All Articles