function PasswordConfirmTest::testValueCallback
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Render/Element/PasswordConfirmTest.php \Drupal\Tests\Core\Render\Element\PasswordConfirmTest::testValueCallback()
- 10 core/tests/Drupal/Tests/Core/Render/Element/PasswordConfirmTest.php \Drupal\Tests\Core\Render\Element\PasswordConfirmTest::testValueCallback()
- 11.x core/tests/Drupal/Tests/Core/Render/Element/PasswordConfirmTest.php \Drupal\Tests\Core\Render\Element\PasswordConfirmTest::testValueCallback()
@covers ::valueCallback
@dataProvider providerTestValueCallback
File
-
core/
tests/ Drupal/ Tests/ Core/ Render/ Element/ PasswordConfirmTest.php, line 20
Class
- PasswordConfirmTest
- @coversDefaultClass \Drupal\Core\Render\Element\PasswordConfirm @group Render
Namespace
Drupal\Tests\Core\Render\ElementCode
public function testValueCallback($expected, $element, $input) {
$form_state = $this->prophesize(FormStateInterface::class)
->reveal();
$this->assertSame($expected, PasswordConfirm::valueCallback($element, $input, $form_state));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.