yo2bh
yo2bh

Reputation: 1436

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

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.

Upvotes: 36

Views: 19161

Answers (9)

iOS_nerd
iOS_nerd

Reputation: 7

Found the enable code coverage option under test plan -> configuration -> code coverage was set to off -> enable code coverage

Upvotes: 0

Vladimir Khrolovich
Vladimir Khrolovich

Reputation: 131

I didn't find Options in Target -> Test. No Options in Target -> Test

I found the Code Coverage setting moved to the Test plan configurations.
Select the Autocreated test plan in the Test navigator and choose Edit Test Plan -> find Code coverage in Configurations. Then you should save it as a new Test plan.

Code coverage in the Test plan

Upvotes: 9

Eric Yuan
Eric Yuan

Reputation: 1502

If you're working on a framework, you'll need to enable code coverage in two places.

First, you'll need to create a standalone scheme for testing the framework. To enable code coverage for this scheme, go to your project's scheme and select "Edit Scheme." Then, select "Test" from the left-hand menu and check the box next to "Gather coverage data."

Second, you'll need to enable code coverage for the Clang compiler. To do this, go to your project settings and select the target for your framework. Then, go to "Build Settings" and select "Apple Clang - Code Generation." Since tests are only run in DEBUG mode, make sure to select "YES" for the "Enable Code Coverage Support" option under DEBUG.

Code Coverage

Upvotes: 0

goldena
goldena

Reputation: 11

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.

Upvotes: 0

Vlad
Vlad

Reputation: 6730

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.

Upvotes: 12

Esmaeil
Esmaeil

Reputation: 658

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.

Upvotes: 1

BergerBytes
BergerBytes

Reputation: 397

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

Upvotes: 30

Brian Sachetta
Brian Sachetta

Reputation: 3463

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

Upvotes: 14

krishnendra
krishnendra

Reputation: 693

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

image


Upvotes: 51

Related Questions