Generating Reports

Install tools

To generate reports you will need xcov and xcpretty.

gem install xcov
gem install xcpretty

Generate Unit tests coverage report

To get this report run

./run_unit_tests_coverage.sh

The report is available at

./unit_tests_coverage/index.html

Generate Integration tests coverage report

To get this report run

./run_integration_tests_coverage.sh

The report is available at

# files coverage
./integration_tests_coverage/index.html

# test methods listing
./integration_tests_coverage/report.html

View reports

You can view reports here and here.

Last updated