public function WebAssert::cookieEquals in Drupal 10
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/WebAssert.php \Drupal\Tests\WebAssert::cookieEquals()
File
- core/
tests/ Drupal/ Tests/ WebAssert.php, line 754
Class
- WebAssert
- Defines a class with methods for asserting presence of elements during tests.
Namespace
Drupal\TestsCode
public function cookieEquals($name, $value) {
assert(func_num_args() === 2);
return parent::cookieEquals($name, $value);
}