persistent class %UnitTest.Result.TestCase
extends %Persistent, %XML.Adaptor
Object and SQL projection of a UnitTest TestCase
property Duration
as %Numeric(SCALE=6);
Duration of the execution of the TestCase, 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 TestCase
property Status
as %Integer(DISPLAYLIST=",failed,passed,skipped",VALUELIST=",0,1,2");
The status of the TestCase.
relationship TestMethods
as %UnitTest.Result.TestMethod [ Inverse = TestCase,Cardinality = children ];
List of TestMethods in this TestCase
relationship TestSuite
as %UnitTest.Result.TestSuite [ Inverse = TestCases,Cardinality = parent ];
The parent TestSuite containing this TestCase
classmethod FileIndicesRecursive(id)
as %Status
index (IdKeyIndex on Name) [IdKey];
index (idxName on Name);