You are here

public function DsTestTrait::dsConfigureUi in Display Suite 8.4

Same name and namespace in other branches
  1. 8.3 tests/src/Functional/DsTestTrait.php \Drupal\Tests\ds\Functional\DsTestTrait::dsConfigureUi()

Configure Field UI.

24 calls to DsTestTrait::dsConfigureUi()
BlockFieldPluginTest::testBlockAddWrappers in tests/src/Functional/BlockFieldPluginTest.php
Tests the "Add block wrappers and classes" option.
BlockFieldPluginTest::testBlockFieldTitleOverride in tests/src/Functional/BlockFieldPluginTest.php
Test block title override.
BlockTest::testBlock in tests/src/Functional/BlockTest.php
Test adding a block, modifying output.
CacheTagsTest::testUserCacheTags in tests/src/Functional/CacheTagsTest.php
Tests setting the correct cache tags.
CommentTest::testComments in tests/src/Functional/CommentTest.php
Test adding comments to a node.

... See full list

File

tests/src/Functional/DsTestTrait.php, line 68

Class

DsTestTrait
Provides common functionality for the Display Suite test classes.

Namespace

Drupal\Tests\ds\Functional

Code

public function dsConfigureUi($edit, $url = 'admin/structure/types/manage/article/display') {
  $this
    ->drupalGet($url);
  $this
    ->submitForm($edit, 'Save');
}