function DisplayTest::testAddDisplay
Tests adding a display.
File
-
core/
modules/ views_ui/ tests/ src/ Functional/ DisplayTest.php, line 38
Class
- DisplayTest
- Tests the display UI.
Namespace
Drupal\Tests\views_ui\FunctionalCode
public function testAddDisplay() {
$view = $this->randomView();
$this->assertNoText('Block');
$this->assertNoText('Block 2');
$this->drupalPostForm(NULL, [], t('Add @display', [
'@display' => 'Block',
]));
$this->assertText('Block');
$this->assertNoText('Block 2');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.