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