persistent class %UnitTest.Result.TestSuite
extends %Persistent, %XML.Adaptor
Object and SQL projection of a UnitTest TestSuite
property Duration
as %Numeric(SCALE=6);
Duration of the execution of the TestSuite, in seconds
property ErrorAction
as %String;
If the Status is failed, this is the action that logged the error
property ErrorDescription
as %String;
If the Status is failed, this is the description of the error
property Name
as %String;
Name of the TestSuite
property Status
as %Integer(DISPLAYLIST=",failed,passed,skipped",VALUELIST=",0,1,2");
The status of the TestSuite.
relationship TestCases
as %UnitTest.Result.TestCase [ Inverse = TestSuite,Cardinality = children ];
List of TestCases in this TestSuite
relationship TestInstance
as %UnitTest.Result.TestInstance [ Inverse = TestSuites,Cardinality = parent ];
The parent TestInstance containing this TestSuite
classmethod FileIndicesRecursive(id)
as %Status
index (IdKeyIndex on Name) [IdKey];
index (idxName on Name);