Skip to main content

Code Coverage 📊

Code coverage is a metric that measures how much of your source code is executed while running automated tests.
It helps teams understand the quality of their tests and identify untested areas of the codebase.

Keploy Record Test case

High code coverage does not always mean good tests, but it ensures that critical parts of your application are not left untested.

✅ Schema Coverage

Schema coverage measures how much of your API schema (endpoints, request/response fields, contracts) is exercised during testing.

qa-coverage
  • Ensures all API fields are validated at least once
  • Detects missing test cases for optional/edge fields
  • Helps QA teams ensure specification-to-implementation accuracy