You are here

protected function BlazyKernelTestBase::setUp in Blazy 8.2

Same name and namespace in other branches
  1. 8 tests/src/Kernel/BlazyKernelTestBase.php \Drupal\Tests\blazy\Kernel\BlazyKernelTestBase::setUp()

Set the default field storage backend for fields created during tests.

Overrides FieldKernelTestBase::setUp

3 calls to BlazyKernelTestBase::setUp()
BlazyEntityTest::setUp in tests/src/Kernel/BlazyEntityTest.php
Set the default field storage backend for fields created during tests.
BlazyFormatterTest::setUp in tests/src/Kernel/BlazyFormatterTest.php
Set the default field storage backend for fields created during tests.
BlazyManagerTest::setUp in tests/src/Kernel/BlazyManagerTest.php
Set the default field storage backend for fields created during tests.
3 methods override BlazyKernelTestBase::setUp()
BlazyEntityTest::setUp in tests/src/Kernel/BlazyEntityTest.php
Set the default field storage backend for fields created during tests.
BlazyFormatterTest::setUp in tests/src/Kernel/BlazyFormatterTest.php
Set the default field storage backend for fields created during tests.
BlazyManagerTest::setUp in tests/src/Kernel/BlazyManagerTest.php
Set the default field storage backend for fields created during tests.

File

tests/src/Kernel/BlazyKernelTestBase.php, line 54

Class

BlazyKernelTestBase
Defines base class for the Blazy formatter tests.

Namespace

Drupal\Tests\blazy\Kernel

Code

protected function setUp() {
  parent::setUp();
  $this
    ->setUpVariables();
  $this
    ->setUpKernelInstall();
  $this
    ->setUpKernelManager();
}