Skip to main contentTestGroupBegin
Valid for: CANoe DE • CANoe4SW DE
Function Syntax
TestGroupBegin (char title[], char description[]); // form 1
TestGroupBegin (char ident[], char title[], char description[]); // form 2
Description
A test group is opened with this function. It may only be called in a test module, but not in a test case. All test cases and test groups that are executed before call of the corresponding function TestGroupEnd are part of this test group. If a test group is not closed with TestGroupEnd, then at the end of the test module, a warning is written in the Write Window and the test group is closed automatically.
To obtain line breaks (in form of <br /\> tags) in the test report, “\n” may be inserted at any place.
Parameters
- ident: E.g. a test group number) of the test group.
- title: Title for the test group.
- description: Description text for the test group.
Return Values
—
Example
See example: TestGroupBegin, TestGroupEnd
TestGroupEnd