Module Values.TestReportSummarySource

Information about a test report.

Sourcetype nonrec t = {
  1. total : WrapperInt.t option;
    (*

    The number of test cases in this TestReportSummary. The total includes truncated test cases.

    *)
  2. statusCounts : ReportStatusCounts.t option;
    (*

    A map that contains the number of each type of status returned by the test results in this TestReportSummary.

    *)
  3. durationInNanoSeconds : WrapperLong.t option;
    (*

    The number of nanoseconds it took to run all of the test cases in this report.

    *)
}
Sourceval make : ?total:??? -> ?statusCounts:??? -> ?durationInNanoSeconds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of WrapperInt.t | `Long of WrapperLong.t | `Map of ([> `String of String_.t ] * [> `Integer of WrapperInt.t ]) list ]) 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