ST_TestSuiteResult Struct


Fields

NameTypeDescription
NameT_MaxStringFull class name
IdentityUINT(0..GVL_Param_TcUnit.MaxNumberOfTestSuites)Should be 0..GVL_Param_TcUnit.MaxNumberOfTestSuites-1 but gives unknown compiler error
NumberOfTestsUINT(0..GVL_Param_TcUnit.MaxNumberOfTestsForEachTestSuite)
NumberOfFailedTestsUINT(0..GVL_Param_TcUnit.MaxNumberOfTestsForEachTestSuite)
DurationLREALIn seconds
TestCaseResultsARRAY[1..GVL_Param_TcUnit.MaxNumberOfTestsForEachTestSuite] OF ST_TestCaseResult

Used by

Declaration source
TYPE ST_TestSuiteResult :
STRUCT
    Name : T_MaxString; // Full class name
    Identity : UINT(0..GVL_Param_TcUnit.MaxNumberOfTestSuites); // Should be 0..GVL_Param_TcUnit.MaxNumberOfTestSuites-1 but gives unknown compiler error
    NumberOfTests : UINT(0..GVL_Param_TcUnit.MaxNumberOfTestsForEachTestSuite);
    NumberOfFailedTests : UINT(0..GVL_Param_TcUnit.MaxNumberOfTestsForEachTestSuite);
    Duration : LREAL; // In seconds
    TestCaseResults : ARRAY[1..GVL_Param_TcUnit.MaxNumberOfTestsForEachTestSuite] OF ST_TestCaseResult;
END_STRUCT
END_TYPE