public function WebAssert::statusMessageContains in Drupal 10
Asserts that a status message containing a given string exists.
Parameters
string $message: The partial message to assert.
string|null $type: The optional message type: status, error, or warning.
File
- core/tests/ Drupal/ Tests/ WebAssert.php, line 1064 
Class
- WebAssert
- Defines a class with methods for asserting presence of elements during tests.
Namespace
Drupal\TestsCode
public function statusMessageContains(string $message, string $type = NULL) : void {
  $selector = $this
    ->buildStatusMessageSelector($message, $type);
  try {
    $this
      ->elementExists('xpath', $selector);
  } catch (ExpectationException $e) {
    Assert::fail($e
      ->getMessage());
  }
}