How to display Xcode code coverage when it's not displaying?

Viewed 11827

I have been trying to get the code coverage for my project using Xcode 9. All test cases run successfully but did not generate the code coverage report under the Code coverage tab.

I tried the following things:

  1. Enable the Gather code coverage in the scheme.

  2. Enable Code Coverage Support for my target.

  3. Enable the Showcase bundle option.

    Is there an extra setting require to check the code coverage report ? or should I miss something? Thanks in advance.

6 Answers

Issue Resolve in Version 9.3, to get the code coverage Target -> Test -> Options -> CodeCoverage See image:

image


If you want to see the code coverage in the right side of the editor, make sure you have Show Code Coverage selected in the Editor drop down menu.

Show Code Coverage

There was known bug on Apple side addressed missed code coverage for UI tests targets (https://openradar.appspot.com/24006783).

Xcode Version 9.3 beta (9Q98q) seems resolves issue as long as Debug executable not enabled in Test schema.

In Xcode build scheme editor Test -> Info tab -> Debugger make sure that checkbox Debug executable is unchecked.

I'm pretty sure they just moved the code coverage to a new location. I'm seeing it now as part of the report navigator (see screenshot below).

To get there, first turn on code coverage support (edit scheme -> test -> options -> check code coverage box) then look on the left hand side of xcode at the navigator. At the top you will see a bunch of icons. Click on the last one on the right (it looks like a message bubble).

Within that tab, you will see all the tests you ran. Within each test is a "coverage" item. Click on one of those to get the coverage report for that specific test.

xcode window

If you like me and don't see the Option tab (or any tab) on Target -> Test in your schema, it means you need to add test schema to your app or you select wrong Target.

First select Manage Schemes... and see do you have yourTargetTest and if it is checked or not.

Manage Schemes...

Second, add (small + button) and select your test target.

enter image description here

By the way, if you don't have Test Bundle, please add it to your boundles list first.

enter image description here Now you will see your test bundle and can select and edit it. And you will see the Options tab, and Code Coverage as mentioned in accepted answer.

The old bug when you have had to deselect Debugger 'Debug executable' in the Info tab of Edit Scheme (for Test Debug) - seems to be solved, but there is a new one on ARM M1, so if there is no test coverage showing - try building for "My Mac (Rosetta)" or if if fails due to use of platform-specific frameworks like UIKit in my case for "My Mac (Mac Catalyst, Rosetta).

It will be slower, but it should work.

Related