function BookUninstallTest::setUp
Overrides KernelTestBase::setUp
File
- 
              core/
modules/ book/ tests/ src/ Kernel/ BookUninstallTest.php, line 37  
Class
- BookUninstallTest
 - Tests that the Book module cannot be uninstalled if books exist.
 
Namespace
Drupal\Tests\book\KernelCode
protected function setUp() : void {
  parent::setUp();
  $this->installEntitySchema('user');
  $this->installEntitySchema('node');
  $this->installSchema('book', [
    'book',
  ]);
  $this->installSchema('node', [
    'node_access',
  ]);
  $this->installConfig([
    'node',
    'book',
    'field',
  ]);
  // For uninstall to work.
  $this->installSchema('user', [
    'users_data',
  ]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.