Login

Log in with one your accounts

Contribution

We are happy you want to contribute to DXKB. Please choose your preferred way

All Articles
Nov 11, 20193 min read

Code Coverage

How many lines of your code are covered by automated tests? Did you miss any by accident? Use Code Coverage to check it out!

What Is a Code Coverage

Code Coverage (CC) measures how many, and which specific source code lines are being tested by automated tests (for example, unit or integration test). If you have 90% CC, it means that 10% of the source code is not being tested at the moment. Your goal is to get as close to 100% CC as possible without losing the quality of your code or tests. CC can be used as a key performance indicator for suppliers. The tests should be run by developers, they should not rely only on Continuous Integration.

Code CoverageSource: Developers.google.com: The Chromium Chronicle: Code Coverage in Gerrit

CC is usually calculated in a Continuous Integration library, for example, GitLab. This library opens an application that measures the CC automatically. The library provides you with coverage reports, for example:

  • Function coverage: How many defined functions have been called.
  • Statement coverage: How many statements in the program have been executed.
  • Branches coverage: How many control branches structures have been executed.
  • Condition coverage: How many boolean sub-expressions have been tested for a true and a false value.
  • Line coverage: How many lines of source code have been tested.

Ready to put this knowledge into action?

Visit our website and learn how DX Heroes can help your business succeed.

Why You Might Want Code Coverage

  • The coverage reports are great feedback - they can provide CC for every file.
  • The tools for CC are often open source tools so you can see the quality of the library.
  • CC can be used for measuring the quality of supplies and services.
  • CC can reveal major mistakes during early software phases (building or compiling). It can serve as a Smoke Test.
  • In order to get official certification, some software is required to use CC. CC is mandatory, for example, for air and space transportation, rail transportation, the automotive industry, or for medical applications.

Problems the Code Coverage Solves

How to Implement the Code Coverage

Set up the library for your software and run it under a controlled environment. Use a CC tool to map every executed function.

There are a lot of CC tools you can use, for each programming language. For example:

Update the tests if there are no areas of code that have not been exercised. Developers can check CC reports to advise additional tests to increase the CC. Important: The process can slow down the application so it is not recommended to do it in production.

Common Pitfalls of the Code Coverage

  • Developers write useless tests to reach 100% CC.
  • A developer corrects the functionality but does not correct the test. That means that a wrong test can fool the CC.
  • A deveoper writes new code and applies wrong tests. The CC declines.

Resources for the Code Coverage

Was the article helpful?

Want to write for DXKB?

Feel free to contribute. People from DXKB community will be more than happy.

Avatar

Prokop Simek

CEO

CEO at DX Heroes
CEO at DX Heroes

Contribution

We are happy you want to contribute to DXKB. Please choose your preferred way