public function FileAssetTest::testInterface

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Asset/FileAssetTest.php, line 18

Class

FileAssetTest

Namespace

Assetic\Test\Asset

Code

public function testInterface() {
  $asset = new FileAsset(__FILE__);
  $this
    ->assertInstanceOf('Assetic\\Asset\\AssetInterface', $asset, 'Asset implements AssetInterface');
}