Xcoverage

Xcode Plugin that displays coverage data in the text editor
Alternatives To Xcoverage
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Vvdocumenter Xcode8,468
6 years agoJuly 31, 201463mitObjective-C
Xcode plug-in which helps you write documentation comment easier, for both Objective-C and Swift.
Injectionforxcode6,508
10 months agoFebruary 26, 201777mitObjective-C
Runtime Code Injection for Objective-C & Swift
Awesome Xcode Extensions2,863
2 months agoRuby
Awesome native Xcode extensions.
Colorsense For Xcode2,859
7 years agoSeptember 26, 202248Objective-C
Plugin for Xcode to make working with colors more visual
Clangformat Xcode2,790
3 years agoSeptember 26, 202232mitObjective-C
Xcode plug-in to to use clang-format from in Xcode and consistently format your code with Clang
Rtimageassets2,505
4 years agoSeptember 26, 20229mitObjective-C
A Xcode plugin to automatically generate 2x, 1x image from 3x image for you, or upscale to 3x from 2x
Grpc Swift1,772
2 days ago26February 11, 202276apache-2.0Swift
The Swift language implementation of gRPC.
Xtodo1,570
7 years agoDecember 07, 201329Objective-C
Xcode plugin to collect and list the `TODO`,`FIXME`,`???`,`!!!!`
Dash Plugin For Xcode1,540
2 years agoJuly 16, 20222Objective-C
Plugin for Xcode to integrate the Dash documentation viewer app
Codepilot1,317
3 years agoJuly 16, 20227apache-2.0Objective-C
Code Pilot is an Xcode plugin which lets you woosh through your code and save a lot (and we mean a *lot*) of your time.
Alternatives To Xcoverage
Select To Compare


Alternative Project Comparisons
Readme

XCoverage

Xcode Plugin that displays coverage data in the text editor

Example

###Menu options: Menu options

  • Quickly toggle with keyboard shortcut CMD+Shift+\
  • By default the plugin will try and find your coverage files, however for the best performance/reliability you can set your own location. The plugin will then use this location and recursively search it for your coverage file matching the source file you are viewing.

###Installation instructions: Install via Alcatraz

OR

Open the project in XCode and build it. This should auto-install it for you and just restart XCode to begin using!

To uninstall, delete the XCoverage directory from ~/Library/Application Support/Developer/Shared/Xcode/Plug-ins

###See test app for example

  • If you run the unit tests for the test app (CMD+U) then you will generate coverage data for the ViewController

###Generating coverage data This plugin does not actually generate coverage data for you, since there are various workflows that people use to do this. However if you don't currently have coverage data, the sample app includes some build scripts that can help you get started.

#####Steps: #####1. Enable project settings to begin generating coverage information

#####2. Setup the export_build_vars.py script in build phases

This script is used to export any necessary environment variables from your latest build. The main reason this is needed is that many of the env variables at run-time are completely different in unrelated to your most recent build. They are also usually relative paths instead of absolute like these build variables.

Export build vars

#####3. Add pre-action script to the test section of your scheme

This script will clear any previous .gcda files from your target_object_dir, which helps ensure that this test run will be isolated in the coverage data.

Pre-action

#####4. Add post-action script to the test section of your scheme

This script will run gcov on all of your gcda files generated by your tests running in the app, generating .gcov files to be parsed by the plugin.

Post-action

Popular Plugin Projects
Popular Xcode Projects
Popular Libraries Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Plugin
Script
Objective C
Xcode
Code Coverage
Xcode Plugin