You are here

protected function YamlFormTestTrait::placeBlocks in YAML Form 8

Place breadcrumb page, tasks, and actions.

2 calls to YamlFormTestTrait::placeBlocks()
YamlFormTestBase::setUp in src/Tests/YamlFormTestBase.php
Sets up a Drupal site for running functional and integration tests.
YamlFormTranslationTest::setUp in src/Tests/YamlFormTranslationTest.php
Sets up a Drupal site for running functional and integration tests.

File

src/Tests/YamlFormTestTrait.php, line 109

Class

YamlFormTestTrait
Defines form test trait.

Namespace

Drupal\yamlform\Tests

Code

protected function placeBlocks() {
  $this
    ->drupalPlaceBlock('system_breadcrumb_block');
  $this
    ->drupalPlaceBlock('page_title_block');
  $this
    ->drupalPlaceBlock('local_tasks_block');
  $this
    ->drupalPlaceBlock('local_actions_block');
}