ST_TestSuiteResults Struct


Fields

NameTypeDescription
NumberOfTestSuitesUINTThe total number of test suites
NumberOfTestCasesUINTThe total number of test cases (for all test suites)
NumberOfSuccessfulTestCasesUINTThe total number of test cases that had all ASSERTS successful
NumberOfFailedTestCasesUINTThe total number of test cases that had at least one ASSERT failed
DurationLREALDuration it took for all test suites to finish, in seconds
TestSuiteResultsARRAY[1..GVL_Param_TcUnit.MaxNumberOfTestSuites] OF ST_TestSuiteResult

Used by

Declaration source
TYPE ST_TestSuiteResults :
STRUCT
    // General test results
    NumberOfTestSuites : UINT; // The total number of test suites
    NumberOfTestCases : UINT; // The total number of test cases (for all test suites)
    NumberOfSuccessfulTestCases : UINT; // The total number of test cases that had all ASSERTS successful
    NumberOfFailedTestCases : UINT; // The total number of test cases that had at least one ASSERT failed
    Duration : LREAL; // Duration it took for all test suites to finish, in seconds

    // Test results for each individiual test suite
    TestSuiteResults : ARRAY[1..GVL_Param_TcUnit.MaxNumberOfTestSuites] OF ST_TestSuiteResult;
END_STRUCT
END_TYPE