class TableSelectTest in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Render/Element/TableSelectTest.php \Drupal\Tests\Core\Render\Element\TableSelectTest
@coversDefaultClass \Drupal\Core\Render\Element\Tableselect @group Render
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\Core\Render\Element\TableSelectTest
Expanded class hierarchy of TableSelectTest
File
- core/
tests/ Drupal/ Tests/ Core/ Render/ Element/ TableSelectTest.php, line 21 - Contains \Drupal\Tests\Core\Render\Element\TableSelectTest.
Namespace
Drupal\Tests\Core\Render\ElementView source
class TableSelectTest extends UnitTestCase {
/**
* @covers ::processTableselect
*/
public function testProcessTableselectWithLinkTitle() {
$element = [];
$form_state = new FormState();
$complete_form = [];
$element_object = new Tableselect([], 'table_select', []);
$info = $element_object
->getInfo();
$element += $info;
$element['#value'] = 0;
$element['#options'][] = [
'title' => new Link('my-text', Url::fromRoute('<front>')),
];
$element['#attributes'] = [];
Tableselect::processTableselect($element, $form_state, $complete_form);
$this
->assertEquals('', $element[0]['#title']);
}
/**
* @covers ::processTableselect
*/
public function testProcessTableselectWithStringTitle() {
$element = [];
$form_state = new FormState();
$complete_form = [];
$element_object = new Tableselect([], 'table_select', []);
$info = $element_object
->getInfo();
$element += $info;
$element['#value'] = 0;
$element['#options'][] = [
'title' => [
'data' => [
'#title' => 'Static title',
],
],
];
$element['#attributes'] = [];
Tableselect::processTableselect($element, $form_state, $complete_form);
$this
->assertEquals(new TranslatableMarkup('Update @title', [
'@title' => 'Static title',
]), $element[0]['#title']);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
TableSelectTest:: |
public | function | @covers ::processTableselect | |
TableSelectTest:: |
public | function | @covers ::processTableselect | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
protected | function | 259 |