Skip to main content

Documentation Index

Fetch the complete documentation index at: https://notevil.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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