sixtine-coverage

Route coverage format (.rcov)

sixtine-coverage can merge route-level coverage with code coverage.

Try it directly in the bundled demo report: demo-report.html.

Route coverage UI

Route coverage summary cards

Example

mode: status
# AuthenticationService
GET /api/rest/v1/authentication/modes 200:1
POST /api/rest/v1/authentication/login 2 200:3
# TenantService
GET /api/rest/v1/tenants 200:4
GET /api/rest/v1/tenants/{id} 0

Rules

Route line grammar

<METHOD> <PATH> <TOKEN> [<TOKEN> ...]

Where each <TOKEN> is one of:

Examples:

Notes on -1

-1:count is useful for transport or network failures where no HTTP status code was returned.

Validation checklist