You are here

public function WebAssert::responseNotMatches in Drupal 10

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/WebAssert.php \Drupal\Tests\WebAssert::responseNotMatches()

File

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

Class

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

Namespace

Drupal\Tests

Code

public function responseNotMatches($regex) {
  assert(func_num_args() === 1);
  return parent::responseNotMatches($regex);
}