/** * Test that constructor imports file path constants. * * @return void */ public function testConstructImportsConstants() { $config = new AssetConfig(); $this->assertArrayHasKey('WEBROOT', $config->constants()); $this->assertEquals(rtrim(WEBROOT, DS), $config->constants()['WEBROOT']); }