Bolt\Tests\Asset\AssetsProviderTest::testLateCss PHP Метод

testLateCss() публичный Метод

public testLateCss ( )
    public function testLateCss()
    {
        $app = $this->getApp();
        $stylesheet = (new Stylesheet())->setFileName('testfile.css')->setLate(true);
        $app['asset.queue.file']->add($stylesheet);
        $response = new Response($this->template);
        $app['asset.queue.file']->process($this->getRequest(), $response);
        $this->assertEquals($this->html($this->expectedLateCss), $this->html($response->getContent()));
    }