public function TableTest::testThemeTableNotResponsiveProperty in Zircon Profile 8
Same name in this branch
- 8 core/modules/system/src/Tests/Theme/TableTest.php \Drupal\system\Tests\Theme\TableTest::testThemeTableNotResponsiveProperty()
- 8 core/modules/system/src/Tests/Render/Element/TableTest.php \Drupal\system\Tests\Render\Element\TableTest::testThemeTableNotResponsiveProperty()
Same name and namespace in other branches
- 8.0 core/modules/system/src/Tests/Render/Element/TableTest.php \Drupal\system\Tests\Render\Element\TableTest::testThemeTableNotResponsiveProperty()
Tests that 'responsive-table' class only applied when responsive is TRUE.
File
- core/
modules/ system/ src/ Tests/ Render/ Element/ TableTest.php, line 203 - Contains \Drupal\system\Tests\Render\Element\TableTest.
Class
- TableTest
- Tests built-in table theme functions.
Namespace
Drupal\system\Tests\Render\ElementCode
public function testThemeTableNotResponsiveProperty() {
$header = array(
'one',
'two',
'three',
);
$rows = array(
array(
1,
2,
3,
),
array(
4,
5,
6,
),
array(
7,
8,
9,
),
);
$table = array(
'#type' => 'table',
'#header' => $header,
'#rows' => $rows,
'#responsive' => FALSE,
);
$this
->render($table);
$this
->assertNoRaw('responsive-enabled', 'The responsive-enabled class is not applied without the "responsive" property set to TRUE.');
}