public function AssetManagerTest::testGetAsset

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/AssetManagerTest.php, line 25

Class

AssetManagerTest

Namespace

Assetic\Test

Code

public function testGetAsset() {
  $asset = $this
    ->getMock('Assetic\\Asset\\AssetInterface');
  $this->am
    ->set('foo', $asset);
  $this
    ->assertSame($asset, $this->am
    ->get('foo'), '->get() returns an asset');
}