Chris@0: drupalCreateContentType(['type' => 'book']); Chris@0: Chris@0: // Install the Book module. Chris@0: try { Chris@0: $this->container->get('module_installer')->install(['book']); Chris@0: } Chris@0: catch (PreExistingConfigException $e) { Chris@0: $this->fail("Expected exception thrown trying to install Book module: " . $e->getMessage()); Chris@0: } Chris@0: } Chris@0: Chris@0: }