Module Values_1.ObservationSummarySource

Contains summary statistics about a test case execution.

Sourcetype nonrec t = {
  1. totalObservations : Values_0.Count.t option;
    (*

    The total number of observations in the test case.

    *)
  2. observationsPassed : Values_0.Count.t option;
    (*

    The number of observations that passed during execution.

    *)
  3. observationsFailed : Values_0.Count.t option;
    (*

    The number of observations that failed during execution.

    *)
}
Sourceval make : ?totalObservations:??? -> ?observationsPassed:??? -> ?observationsFailed:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Values_0.Count.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t