You are here

protected function FillPdfKernelTestBase::setUp in FillPDF 8.4

Same name and namespace in other branches
  1. 5.0.x 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() {
  parent::setUp();
  $this
    ->installEntitySchema('fillpdf_form');
  $this
    ->installEntitySchema('fillpdf_form_field');
  $this
    ->installConfig([
    'fillpdf',
  ]);
}