protected function HistoryLegacyTest::setUp in Drupal 8
Overrides KernelTestBase::setUp
File
- core/
modules/ history/ tests/ src/ Kernel/ HistoryLegacyTest.php, line 25
Class
- HistoryLegacyTest
- Tests History module's legacy code.
Namespace
Drupal\Tests\history\KernelCode
protected function setUp() {
parent::setUp();
$this
->installEntitySchema('node');
$this
->installEntitySchema('user');
$this
->installSchema('history', [
'history',
]);
$this
->installSchema('system', [
'sequences',
]);
}