ApplicationTest::testStaticUrlWithCDN PHP Method

testStaticUrlWithCDN() public method

    public function testStaticUrlWithCDN()
    {
        config(['koel.cdn.url' => 'http://cdn.bar']);
        $this->assertEquals(App::staticUrl(), 'http://cdn.bar/');
        $this->assertEquals(App::staticUrl('foo.css  '), 'http://cdn.bar/foo.css');
    }