public function AssetCacheTest::testGetFilters

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Asset/AssetCacheTest.php, line 122

Class

AssetCacheTest

Namespace

Assetic\Test\Asset

Code

public function testGetFilters() {
  $this->inner
    ->expects($this
    ->once())
    ->method('getFilters')
    ->will($this
    ->returnValue(array()));
  $this
    ->assertInternalType('array', $this->asset
    ->getFilters(), '->getFilters() returns the inner asset filters');
}