public function AssetCacheTest::testEnsureFilter

File

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

Class

AssetCacheTest

Namespace

Assetic\Test\Asset

Code

public function testEnsureFilter() {
  $filter = $this
    ->getMock('Assetic\\Filter\\FilterInterface');
  $this->inner
    ->expects($this
    ->once())
    ->method('ensureFilter');
  $this->asset
    ->ensureFilter($filter);
}