You are here

public function BambooTwigLoaderTest::setUp in Bamboo Twig 8.2

Same name and namespace in other branches
  1. 8.5 tests/src/Functional/BambooTwigLoaderTest.php \Drupal\Tests\bamboo_twig\Functional\BambooTwigLoaderTest::setUp()
  2. 8 tests/src/Functional/BambooTwigLoadersTest.php \Drupal\Tests\bamboo_twig\Functional\BambooTwigLoaderTest::setUp()
  3. 8.3 tests/src/Functional/BambooTwigLoaderTest.php \Drupal\Tests\bamboo_twig\Functional\BambooTwigLoaderTest::setUp()
  4. 8.4 tests/src/Functional/BambooTwigLoaderTest.php \Drupal\Tests\bamboo_twig\Functional\BambooTwigLoaderTest::setUp()

Overrides BrowserTestBase::setUp

File

tests/src/Functional/BambooTwigLoaderTest.php, line 33

Class

BambooTwigLoaderTest
Tests Loaders twig filters and functions.

Namespace

Drupal\Tests\bamboo_twig\Functional

Code

public function setUp() {
  parent::setUp();

  // Create an article content type that we will use for testing.
  $this
    ->drupalCreateContentType([
    'type' => 'article',
    'name' => 'Article',
  ]);

  // Create an article node that we will use for testing.
  $this->article = $this
    ->drupalCreateNode([
    'title' => 'Hello, world!',
    'type' => 'article',
  ]);
  $this->article
    ->save();

  // Create a user for tests.
  $this->admin_user = $this
    ->drupalCreateUser();

  // Create a taxonomy term for tests.
  $this->vocabulary = $this
    ->createVocabulary();
  $this->term = $this
    ->createTerm($this->vocabulary);

  // Create a file for tests.
  $this->file = $this
    ->createFile();
  $this->container
    ->get('router.builder')
    ->rebuild();
}