TextfieldTest.php

Same filename in this branch
  1. 9 core/modules/text/tests/src/Unit/Migrate/d6/TextFieldTest.php
  2. 9 core/modules/text/tests/src/Unit/Migrate/d7/TextFieldTest.php
  3. 9 core/modules/text/tests/src/Unit/Plugin/migrate/field/d6/TextFieldTest.php
  4. 9 core/modules/text/tests/src/Unit/Plugin/migrate/field/d7/TextFieldTest.php
  5. 9 core/modules/text/tests/src/Functional/TextFieldTest.php
Same filename and directory in other branches
  1. 8.9.x core/modules/text/tests/src/Unit/Migrate/d6/TextFieldTest.php
  2. 8.9.x core/modules/text/tests/src/Unit/Migrate/d7/TextFieldTest.php
  3. 8.9.x core/modules/text/tests/src/Unit/Plugin/migrate/field/d6/TextFieldTest.php
  4. 8.9.x core/modules/text/tests/src/Unit/Plugin/migrate/field/d7/TextFieldTest.php
  5. 8.9.x core/modules/text/tests/src/Functional/TextFieldTest.php
  6. 8.9.x core/tests/Drupal/Tests/Core/Render/Element/TextfieldTest.php
  7. 10 core/modules/text/tests/src/Unit/Plugin/migrate/field/d6/TextFieldTest.php
  8. 10 core/modules/text/tests/src/Unit/Plugin/migrate/field/d7/TextFieldTest.php
  9. 10 core/modules/text/tests/src/Functional/TextFieldTest.php
  10. 10 core/tests/Drupal/Tests/Core/Render/Element/TextfieldTest.php
  11. 11.x core/modules/text/tests/src/Unit/Plugin/migrate/field/d6/TextFieldTest.php
  12. 11.x core/modules/text/tests/src/Unit/Plugin/migrate/field/d7/TextFieldTest.php
  13. 11.x core/modules/text/tests/src/Functional/TextFieldTest.php
  14. 11.x core/tests/Drupal/Tests/Core/Render/Element/TextfieldTest.php

Namespace

Drupal\Tests\Core\Render\Element

File

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.