function WebAssert::statusMessageNotContains

Same name in other branches
  1. 9 core/tests/Drupal/Tests/WebAssert.php \Drupal\Tests\WebAssert::statusMessageNotContains()
  2. 10 core/tests/Drupal/Tests/WebAssert.php \Drupal\Tests\WebAssert::statusMessageNotContains()

Asserts that a status message containing a given string does not exist.

Parameters

string $message: The partial message to assert.

string|null $type: The optional message type: status, error, or warning.

1 call to WebAssert::statusMessageNotContains()
JSWebAssert::statusMessageNotContains in core/tests/Drupal/FunctionalJavascriptTests/JSWebAssert.php
Asserts that a status message containing a given string does not exist.
1 method overrides WebAssert::statusMessageNotContains()
JSWebAssert::statusMessageNotContains in core/tests/Drupal/FunctionalJavascriptTests/JSWebAssert.php
Asserts that a status message containing a given string does not exist.

File

core/tests/Drupal/Tests/WebAssert.php, line 872

Class

WebAssert
Defines a class with methods for asserting presence of elements during tests.

Namespace

Drupal\Tests

Code

public function statusMessageNotContains(string $message, ?string $type = NULL) : void {
    $selector = $this->buildStatusMessageSelector($message, $type);
    try {
        $this->elementNotExists('xpath', $selector);
    } catch (ExpectationException $e) {
        Assert::fail($e->getMessage());
    }
}

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