Test_error.Set
type nonrec 'error t = {
soft_errors : 'error Error_accumulator.t; |
hard_errors : 'error Error_accumulator.t; |
exit_code : int option; |
}
val empty : 'a t
val max_severity : 'a t -> [> `Hard | `None | `Soft ]
val all_errors : 'a t -> 'b Error_accumulator.t
val soft_singleton : 'a -> 'b t
val hard_singleton : ?exit_code:int -> 'a -> 'b t
val of_soft_or_error : ( unit, Core.Error.t ) Core._result -> internal_error t
val of_hard_or_error :
?exit_code:int ->
( unit, Core.Error.t ) Core._result ->
internal_error t