function EntityMaskTest::setUp

Same name in other branches
  1. 8.x-3.x modules/ctools_entity_mask/tests/src/Kernel/EntityMaskTest.php \Drupal\Tests\ctools_entity_mask\Kernel\EntityMaskTest::setUp()

Overrides KernelTestBase::setUp

File

modules/ctools_entity_mask/tests/src/Kernel/EntityMaskTest.php, line 37

Class

EntityMaskTest
Basic test of entity type masking.

Namespace

Drupal\Tests\ctools_entity_mask\Kernel

Code

protected function setUp() : void {
    parent::setUp();
    $this->installConfig([
        'block_content',
        'entity_mask_test',
    ]);
    $this->installEntitySchema('fake_block_content');
}