FillPdfKernelTestBase.php in FillPDF 5.0.x
File
tests/src/Kernel/FillPdfKernelTestBase.php
View source
<?php
namespace Drupal\Tests\fillpdf\Kernel;
use Drupal\KernelTests\Core\Entity\EntityKernelTestBase;
abstract class FillPdfKernelTestBase extends EntityKernelTestBase {
public static $modules = [
'file',
'link',
'token',
'options',
'views',
'serialization',
'options',
'fillpdf',
'fillpdf_test',
];
protected function setUp() : void {
parent::setUp();
$this
->installEntitySchema('fillpdf_form');
$this
->installEntitySchema('fillpdf_form_field');
$this
->installConfig([
'fillpdf',
]);
}
}