function TableTest::testThemeTableNotResponsiveHeaders
Same name in other branches
- 8.9.x core/tests/Drupal/KernelTests/Core/Render/Element/TableTest.php \Drupal\KernelTests\Core\Render\Element\TableTest::testThemeTableNotResponsiveHeaders()
- 10 core/tests/Drupal/KernelTests/Core/Render/Element/TableTest.php \Drupal\KernelTests\Core\Render\Element\TableTest::testThemeTableNotResponsiveHeaders()
- 11.x core/tests/Drupal/KernelTests/Core/Render/Element/TableTest.php \Drupal\KernelTests\Core\Render\Element\TableTest::testThemeTableNotResponsiveHeaders()
Tests that the 'responsive-table' class is not applied without headers.
File
-
core/
tests/ Drupal/ KernelTests/ Core/ Render/ Element/ TableTest.php, line 176
Class
- TableTest
- Tests built-in table theme functions.
Namespace
Drupal\KernelTests\Core\Render\ElementCode
public function testThemeTableNotResponsiveHeaders() {
$rows = [
[
1,
2,
3,
],
[
4,
5,
6,
],
[
7,
8,
9,
],
];
$table = [
'#type' => 'table',
'#rows' => $rows,
'#responsive' => TRUE,
];
$this->render($table);
$this->assertNoRaw('responsive-enabled', 'The responsive-enabled class is not applied without table headers.');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.