DotsUnited\BundleFu\Tests\BundleTest::testResetResetsFileLists PHP Метод

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

    public function testResetResetsFileLists()
    {
        $this->bundle->start();
        echo $this->includeAll();
        $this->bundle->end();
        $this->assertGreaterThan(0, count($this->bundle->getCssFileList()));
        $this->assertGreaterThan(0, count($this->bundle->getJsFileList()));
        $this->bundle->reset();
        $this->assertEquals(0, count($this->bundle->getCssFileList()));
        $this->assertEquals(0, count($this->bundle->getJsFileList()));
    }