persistent class %SYS.Bench.Test
extends %Persistent
Class structure used by %BENCHLANG routine
Properties and results of an individual test
property Description
as %String(MAXLEN=100);
The text description (usually the code snippet) of the individual test.
property Result
as %Float;
The results of the individual tests.
this may be the length of time (in seconds), or the CPU time (in seconds)
or the number of iterations done.
property Test
as %String;
The test id for the results of a specific test within a run.
relationship TestRun
as Run [ Inverse = Tests,Cardinality = parent ];
The parent 'run' object for this individual test.
index (Test on Test) [IdKey];