persistent class %UnitTest.Result.TestAssert
extends %Persistent, %XML.Adaptor
Object and SQL projection of a UnitTest TestAssert
property Action
as %String;
The name of the action of the TestAssert
property Counter
as %Integer;
The index of the TestAssert
property Description
as %String;
The description of the TestAssert
property Status
as %Integer(DISPLAYLIST=",failed,passed,skipped",VALUELIST=",0,1,2");
The Status of the TestAssert
relationship TestMethod
as %UnitTest.Result.TestMethod [ Inverse = TestAsserts,Cardinality = parent ];
The parent TestMethod containing this TestAssert
classmethod FileIndicesRecursive(id)
as %Status
index (IdKeyIndex on Counter) [IdKey];
index (idxStatus on Status);