You are here

protected function FillPdfKernelTestBase::setUp in FillPDF 5.0.x

Same name and namespace in other branches
  1. 8.4 tests/src/Kernel/FillPdfKernelTestBase.php \Drupal\Tests\fillpdf\Kernel\FillPdfKernelTestBase::setUp()

Overrides EntityKernelTestBase::setUp

File

tests/src/Kernel/FillPdfKernelTestBase.php, line 32

Class

FillPdfKernelTestBase
Base class that can be inherited by FillPDF tests.

Namespace

Drupal\Tests\fillpdf\Kernel

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->installEntitySchema('fillpdf_form');
  $this
    ->installEntitySchema('fillpdf_form_field');
  $this
    ->installConfig([
    'fillpdf',
  ]);
}