28
votes

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.

5
Did you try to run it on an actual device? This might be a bug.Tamás Sengel
no i am running on simulator. let me try on device.yo2bh
Try to follow steps provided under Apple's documentation.Sagar R. Kothari
Still got issues, try this.Sagar R. Kothari

5 Answers

37
votes

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

image


23
votes

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

12
votes

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.

9
votes

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

1
votes

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.