You are here

public function PasswordTest::testValueCallback in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Render/Element/PasswordTest.php \Drupal\Tests\Core\Render\Element\PasswordTest::testValueCallback()

@covers ::valueCallback

@dataProvider providerTestValueCallback

File

core/tests/Drupal/Tests/Core/Render/Element/PasswordTest.php, line 25
Contains \Drupal\Tests\Core\Render\Element\PasswordTest.

Class

PasswordTest
@coversDefaultClass \Drupal\Core\Render\Element\Password @group Render

Namespace

Drupal\Tests\Core\Render\Element

Code

public function testValueCallback($expected, $input) {
  $element = [];
  $form_state = $this
    ->prophesize(FormStateInterface::class)
    ->reveal();
  $this
    ->assertSame($expected, Password::valueCallback($element, $input, $form_state));
}