protected function RevisionDiffFactoryTest::setUp in Replication 8
Overrides KernelTestBase::setUp
File
- tests/
src/ Kernel/ RevisionDiffFactoryTest.php, line 29
Class
- RevisionDiffFactoryTest
- Tests the revision diff factory.
Namespace
Drupal\Tests\replication\KernelCode
protected function setUp() {
parent::setUp();
$this
->installEntitySchema('user');
$this
->installEntitySchema('node');
$this
->installEntitySchema('replication_log');
$this
->installEntitySchema('workspace');
$this
->installSchema('key_value', [
'key_value_sorted',
]);
$this
->installConfig([
'multiversion',
]);
\Drupal::service('multiversion.manager')
->enableEntityTypes();
$this->workspace = Workspace::create([
'machine_name' => 'default',
'type' => 'basic',
]);
$this->workspace
->save();
}