public function StringAssetTest::testGetFilters

File

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

Class

StringAssetTest

Namespace

Assetic\Test\Asset

Code

public function testGetFilters() {
  $asset = new StringAsset('');
  $this
    ->assertInternalType('array', $asset
    ->getFilters(), '->getFilters() returns an array');
}