Skip to main content

TestSequenceTitle

Valid for: CANoe DE • CANoe:lite DE • CANoe4SW DE • CANoe4SW:lite DE Note
The title must not contain parenthesis.

Function Syntax

TestSequenceTitle (char title[]);

Description

The title of a test function is acquired automatically from the test function name in the CAPL program. It can also be set explicitly with the help of this function. The function may only be called within a test sequence and relates then to the respective test sequence.

Parameters

  • title: Title of the test sequence.

Return Values

Example

testsequence CheckLockingOnCrash ()
{
  TestSequenceTitle("Check unlock of central locking system on crash");
  // Initialization of signals
  $CrashDetected = 0;
  $LockState = Locked;
  TestWaitForTimeout(200);
}
TestFunctionTitle