public function TextareaTest::testValueCallback in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Render/Element/TextareaTest.php \Drupal\Tests\Core\Render\Element\TextareaTest::testValueCallback()
 - 10 core/tests/Drupal/Tests/Core/Render/Element/TextareaTest.php \Drupal\Tests\Core\Render\Element\TextareaTest::testValueCallback()
 
@covers ::valueCallback
@dataProvider providerTestValueCallback
File
- core/
tests/ Drupal/ Tests/ Core/ Render/ Element/ TextareaTest.php, line 20  
Class
- TextareaTest
 - @coversDefaultClass \Drupal\Core\Render\Element\Textarea @group Render
 
Namespace
Drupal\Tests\Core\Render\ElementCode
public function testValueCallback($expected, $input) {
  $element = [];
  $form_state = $this
    ->prophesize(FormStateInterface::class)
    ->reveal();
  $this
    ->assertSame($expected, Textarea::valueCallback($element, $input, $form_state));
}