Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CodeCoverageReportSummary

import type { CodeCoverageReportSummary } from "https://aws-api.deno.dev/v0.3/services/codebuild.ts?docs=full";

Contains a summary of a code coverage report.

Line coverage measures how many statements your tests cover. A statement is a single instruction, not including comments, conditionals, etc.

Branch coverage determines if your tests cover every possible branch of a control structure, such as an if or case statement.

interface CodeCoverageReportSummary {
branchCoveragePercentage?: number | null;
branchesCovered?: number | null;
branchesMissed?: number | null;
lineCoveragePercentage?: number | null;
linesCovered?: number | null;
linesMissed?: number | null;
}

§Properties

§
branchCoveragePercentage?: number | null
[src]

The percentage of branches that are covered by your tests.

§
branchesCovered?: number | null
[src]

The number of conditional branches that are covered by your tests.

§
branchesMissed?: number | null
[src]

The number of conditional branches that are not covered by your tests.

§
lineCoveragePercentage?: number | null
[src]

The percentage of lines that are covered by your tests.

§
linesCovered?: number | null
[src]

The number of lines that are covered by your tests.

§
linesMissed?: number | null
[src]

The number of lines that are not covered by your tests.