Values.TestCaseSourceInformation about a test case created using a framework such as NUnit or Cucumber. A test case might be a unit test or a configuration test.
type nonrec t = {reportArn : NonEmptyString.t option;The ARN of the report to which the test case belongs.
*)testRawDataPath : String_.t option;The path to the raw data file that contains the test result.
*)prefix : String_.t option;A string that is applied to a series of related test cases. CodeBuild generates the prefix. The prefix depends on the framework used to generate the tests.
*)name : String_.t option;The name of the test case.
*)status : String_.t option;The status returned by the test case after it was run. Valid statuses are SUCCEEDED, FAILED, ERROR, SKIPPED, and UNKNOWN.
*)durationInNanoSeconds : WrapperLong.t option;The number of nanoseconds it took to run this test case.
*)message : String_.t option;A message associated with a test case. For example, an error message or stack trace.
*)expired : Timestamp.t option;The date and time a test case expires. A test case expires 30 days after it is created. An expired test case is not available to view in CodeBuild.
*)testSuiteName : String_.t option;The name of the test suite that the test case is a part of.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Long of WrapperLong.t
| `String of NonEmptyString.t
| `Timestamp of Timestamp.t ])
list ]