protected function EntityViewTest::setUp in Rules 8.3
Overrides RulesKernelTestBase::setUp
File
- tests/
src/ Kernel/ EntityViewTest.php, line 22
Class
- EntityViewTest
- Tests that rules_entity_view() does not throw fatal errors.
Namespace
Drupal\Tests\rules\KernelCode
protected function setUp() : void {
parent::setUp();
$this
->installEntitySchema('user');
$this
->installEntitySchema('node');
$this
->installConfig([
'system',
]);
$this
->installConfig([
'field',
]);
$this
->installConfig([
'node',
]);
$this
->installSchema('system', [
'sequences',
]);
}