public function StringAssetTest::testInterface

File

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

Class

StringAssetTest

Namespace

Assetic\Test\Asset

Code

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