b0.kit
B0_expect.Outcome
Expectation test outcomes.
An outcome counts as one test unit. You may sometimes want to merge multiple outcomes into one.
opam
b0
b0.b0
b0.b00
b0.std
b0_b00_kit
type t
The type for expectation tests outcomes.
type status = [
| `Corrected
| `Expected
| `New
| `Unexpected
| `Unknown
]
The type for outcome status
val status : t -> status
status o is the outcome status of o.
status o
o
val merge : t list -> t
merge o merges the outcomes o in a single outcome (for counting).
merge o