function SystemTestController::statusMessagesForAssertions

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/system_test/src/Controller/SystemTestController.php \Drupal\system_test\Controller\SystemTestController::statusMessagesForAssertions()
  2. 11.x core/modules/system/tests/modules/system_test/src/Controller/SystemTestController.php \Drupal\system_test\Controller\SystemTestController::statusMessagesForAssertions()

Sets messages for testing the WebAssert methods related to messages.

Return value

array Empty array, we just need the messages.

1 string reference to 'SystemTestController::statusMessagesForAssertions'
system_test.routing.yml in core/modules/system/tests/modules/system_test/system_test.routing.yml
core/modules/system/tests/modules/system_test/system_test.routing.yml

File

core/modules/system/tests/modules/system_test/src/Controller/SystemTestController.php, line 162

Class

SystemTestController
Controller routines for system_test routes.

Namespace

Drupal\system_test\Controller

Code

public function statusMessagesForAssertions() : array {
  // Add a simple message of each type.
  $this->messenger
    ->addMessage('My Status Message', 'status');
  $this->messenger
    ->addMessage('My Error Message', 'error');
  $this->messenger
    ->addMessage('My Warning Message', 'warning');
  // Add messages with special characters and/or markup.
  $this->messenger
    ->addStatus('This has " in the middle');
  $this->messenger
    ->addStatus('This has \' in the middle');
  $this->messenger
    ->addStatus('<em>This<span>markup will be</span> escaped</em>.');
  $this->messenger
    ->addStatus('Peaches & cream');
  return [];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.