Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 976 Bytes

2016-04-16-Code-Coverage-In-Xcode.md

File metadata and controls

13 lines (10 loc) · 976 Bytes
title tip-number tip-username tip-username-profile tip-description
Code coverage in Xcode
2
arasu01
Code coverage is a feature in Xcode 7 that enables you to visualize and measure how much of your code is being exercised by tests. With code coverage, you can determine whether your tests are doing the job you intended.

Reference Link -Code Coverage

####Note: Code coverage data collection incurs a performance penalty. Whether the penalty is significant or not, it should affect execution of the code in a linear fashion so performance results remain comparable from test run to test run when it is enabled. However, you should consider whether to have code coverage enabled when you are critically evaluating the performance of routines in your tests.