TextfieldTest.php
Same filename in this branch
- 8.9.x core/modules/text/tests/src/Unit/Migrate/d6/TextFieldTest.php
- 8.9.x core/modules/text/tests/src/Unit/Migrate/d7/TextFieldTest.php
- 8.9.x core/modules/text/tests/src/Unit/Plugin/migrate/field/d6/TextFieldTest.php
- 8.9.x core/modules/text/tests/src/Unit/Plugin/migrate/field/d7/TextFieldTest.php
- 8.9.x core/modules/text/tests/src/Functional/TextFieldTest.php
Same filename in other branches
- 9 core/modules/text/tests/src/Unit/Migrate/d6/TextFieldTest.php
- 9 core/modules/text/tests/src/Unit/Migrate/d7/TextFieldTest.php
- 9 core/modules/text/tests/src/Unit/Plugin/migrate/field/d6/TextFieldTest.php
- 9 core/modules/text/tests/src/Unit/Plugin/migrate/field/d7/TextFieldTest.php
- 9 core/modules/text/tests/src/Functional/TextFieldTest.php
- 9 core/tests/Drupal/Tests/Core/Render/Element/TextfieldTest.php
- 10 core/modules/text/tests/src/Unit/Plugin/migrate/field/d6/TextFieldTest.php
- 10 core/modules/text/tests/src/Unit/Plugin/migrate/field/d7/TextFieldTest.php
- 10 core/modules/text/tests/src/Functional/TextFieldTest.php
- 10 core/tests/Drupal/Tests/Core/Render/Element/TextfieldTest.php
- 11.x core/modules/text/tests/src/Unit/Plugin/migrate/field/d6/TextFieldTest.php
- 11.x core/modules/text/tests/src/Unit/Plugin/migrate/field/d7/TextFieldTest.php
- 11.x core/modules/text/tests/src/Functional/TextFieldTest.php
- 11.x core/tests/Drupal/Tests/Core/Render/Element/TextfieldTest.php
Namespace
Drupal\Tests\Core\Render\ElementFile
-
core/
tests/ Drupal/ Tests/ Core/ Render/ Element/ TextfieldTest.php
View source
<?php
namespace Drupal\Tests\Core\Render\Element;
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Render\Element\Textfield;
use Drupal\Tests\UnitTestCase;
/**
* @coversDefaultClass \Drupal\Core\Render\Element\Textfield
* @group Render
*/
class TextfieldTest extends UnitTestCase {
/**
* @covers ::valueCallback
*
* @dataProvider providerTestValueCallback
*/
public function testValueCallback($expected, $input) {
$element = [];
$form_state = $this->prophesize(FormStateInterface::class)
->reveal();
$this->assertSame($expected, Textfield::valueCallback($element, $input, $form_state));
}
/**
* Data provider for testValueCallback().
*/
public function providerTestValueCallback() {
$data = [];
$data[] = [
NULL,
FALSE,
];
$data[] = [
NULL,
NULL,
];
$data[] = [
'',
[
'test',
],
];
$data[] = [
'test',
'test',
];
$data[] = [
'123',
123,
];
$data[] = [
'testwithnewline',
"test\nwith\rnewline",
];
return $data;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
TextfieldTest | @coversDefaultClass \Drupal\Core\Render\Element\Textfield @group Render |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.