protected function UninstallKernelTest::setUp in Drupal 8
Same name and namespace in other branches
- 9 core/modules/system/tests/src/Kernel/Installer/UninstallKernelTest.php \Drupal\Tests\system\Kernel\Installer\UninstallKernelTest::setUp()
- 10 core/modules/system/tests/src/Kernel/Installer/UninstallKernelTest.php \Drupal\Tests\system\Kernel\Installer\UninstallKernelTest::setUp()
Overrides KernelTestBase::setUp
File
- core/
modules/ system/ tests/ src/ Kernel/ Installer/ UninstallKernelTest.php, line 31
Class
- UninstallKernelTest
- Tests the uninstallation of modules.
Namespace
Drupal\Tests\system\Kernel\InstallerCode
protected function setUp() {
parent::setUp();
$this
->installSchema('user', [
'users_data',
]);
$this
->installEntitySchema('media');
$this
->installEntitySchema('file');
$this
->installConfig([
'media',
]);
}