Values.CodeCoverageSourceContains code coverage report information. 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.
type nonrec t = {id : NonEmptyString.t option;The identifier of the code coverage report.
*)reportARN : NonEmptyString.t option;The ARN of the report.
*)filePath : NonEmptyString.t option;The path of the test report file.
*)lineCoveragePercentage : Percentage.t option;The percentage of lines that are covered by your tests.
*)linesCovered : NonNegativeInt.t option;The number of lines that are covered by your tests.
*)linesMissed : NonNegativeInt.t option;The number of lines that are not covered by your tests.
*)branchCoveragePercentage : Percentage.t option;The percentage of branches that are covered by your tests.
*)branchesCovered : NonNegativeInt.t option;The number of conditional branches that are covered by your tests.
*)branchesMissed : NonNegativeInt.t option;The number of conditional branches that are not covered by your tests.
*)expired : Timestamp.t option;The date and time that the tests were run.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Double of Percentage.t
| `Integer of NonNegativeInt.t
| `String of NonEmptyString.t
| `Timestamp of Timestamp.t ])
list ]