public function FileAssetTest::testGetLastModifiedTypeFileNotFound

File

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

Class

FileAssetTest

Namespace

Assetic\Test\Asset

Code

public function testGetLastModifiedTypeFileNotFound() {
  $asset = new FileAsset(__DIR__ . "/foo/bar/baz.css");
  $this
    ->setExpectedException("RuntimeException", "The source file");
  $asset
    ->getLastModified();
}