B0_expect.Outcome
Expectation outcomes.
Represents the result of an expectation test.
type status = [
| `Corrected
The outcome has changed but has been corrected.
| `Expected
The outcome is expected.
| `New
The expecation test is new.
| `Unexpected
The outcome is unexpected.
| `Unknown
The outcome is unknown.
]
The type for outcome statuses.
type test =
| File of {
file : B0_std.Fpath.t;
diff : bool;
}
The type for kinds of tests.
type t
The type for test outcomes.
val status : t -> status
status o is the status of o.
status o
o
val test : t -> test
test o is the test of o.
test o