assertTrue($this->container->get('theme_installer')->install(['bartik'])); $this->container->get('config.factory') ->getEditable('system.theme') ->set('default', 'bartik') ->save(); } /** * Tests that the Bartik theme always adds its message CSS and Classy's. * * @see bartik.libraries.yml * @see classy.info.yml */ public function testRegressionMissingMessagesCss() { $this->drupalGet(''); $this->assertSession()->statusCodeEquals(200); $this->assertSession()->responseContains('bartik/css/components/messages.css'); $this->assertSession()->responseContains('classy/css/components/messages.css'); } }