protected function AssetCacheTest::setUp

File

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

Class

AssetCacheTest

Namespace

Assetic\Test\Asset

Code

protected function setUp() {
  $this->inner = $this
    ->getMock('Assetic\\Asset\\AssetInterface');
  $this->cache = $this
    ->getMock('Assetic\\Cache\\CacheInterface');
  $this->asset = new AssetCache($this->inner, $this->cache);
}