Skip to content

Coverage on the Map

2 min read

Coverage answers a question a folder tree cannot: which parts of the product do tests actually reach, and how did those tests do?

Every node carries a health state, and results roll up the tree — so an area is coloured by everything beneath it.


StateMeaning
UnmappedNothing is linked here yet — not a gap, just a heading
UncoveredSomething is linked and no test case reaches it
FailingA test reached it and did not pass
Not yet passedCovered, ran, and nothing has passed yet
StalePassing, but not for 90 days — true then, unverified since
HealthyPassing, recently

Selecting a node shows the same verdict as a sentence, with its numbers: tests, passed, failed or blocked, not run, and open defects.


A node’s coverage includes everything linked to it and everything linked beneath it.

Test cases are counted as a set, not a sum. A test case linked under two different children counts once in their shared parent — adding the children’s counts would double it and make an area look better covered than it is.

Coverage health comes from the same function the traceability matrix uses, so the two surfaces cannot tell different stories about the same requirement.


Coverage reflects execution results at the time it was computed. Select Recompute coverage in the action rail after a run finishes to bring the map up to date.


Coverage can be narrowed to a single execution. Instead of “what has ever passed”, the map then shows “how did this run do” — which is the view you want during a release cycle.

Combined with journeys, this is the fastest read on release readiness the map can give: scope to the release’s execution and look at your critical journeys.


The most useful pass over a fresh map:

  1. Look for Uncovered. Real gaps: something is specified or filed here and no test reaches it.
  2. Look for Unmapped areas that should not be. A screen with nothing linked usually means nobody has connected its tests, not that it has none.
  3. Look for Stale on anything critical. Passing 90 days ago and untouched since is a quiet risk.
  4. Check journey health, which is weakest-link and will surface a break the tree view averages away.