function TextareaTest::testValueCallback

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Render/Element/TextareaTest.php \Drupal\Tests\Core\Render\Element\TextareaTest::testValueCallback()
  2. 8.9.x core/tests/Drupal/Tests/Core/Render/Element/TextareaTest.php \Drupal\Tests\Core\Render\Element\TextareaTest::testValueCallback()
  3. 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 22

Class

TextareaTest
@coversDefaultClass <a href="/api/drupal/core%21lib%21Drupal%21Core%21Render%21Element%21Textarea.php/class/Textarea/11.x" title="Provides a form element for input of multiple-line text." class="local">\Drupal\Core\Render\Element\Textarea</a> @group Render

Namespace

Drupal\Tests\Core\Render\Element

Code

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

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