protected function SevenLayoutBuilderTest::setUp in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/FunctionalTests/Theme/SevenLayoutBuilderTest.php \Drupal\FunctionalTests\Theme\SevenLayoutBuilderTest::setUp()
Overrides BrowserTestBase::setUp
File
- core/
tests/ Drupal/ FunctionalTests/ Theme/ SevenLayoutBuilderTest.php, line 36
Class
- SevenLayoutBuilderTest
- Tests the Seven theme.
Namespace
Drupal\FunctionalTests\ThemeCode
protected function setUp() {
parent::setUp();
$this
->drupalPlaceBlock('page_title_block', [
'region' => 'header',
]);
$this
->drupalPlaceBlock('local_tasks_block', [
'region' => 'header',
]);
// Create two nodes.
$this
->createContentType([
'type' => 'bundle_with_section_field',
'name' => 'Bundle with section field',
]);
$this
->createNode([
'type' => 'bundle_with_section_field',
'title' => 'The first node title',
'body' => [
[
'value' => 'The first node body',
],
],
]);
$this
->createNode([
'type' => 'bundle_with_section_field',
'title' => 'The second node title',
'body' => [
[
'value' => 'The second node body',
],
],
]);
}