function WebAssert::fieldValueEquals

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

File

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

Class

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

Namespace

Drupal\Tests

Code

public function fieldValueEquals(string $field, $value, ?TraversableElement $container = NULL) {
    if (!is_string($value)) {
        // @todo Trigger deprecation in
        //   https://www.drupal.org/project/drupal/issues/3421105.
        $value = (string) $value;
    }
    parent::fieldValueEquals($field, $value, $container);
}

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