public function StringAssetTest::testLastModified

File

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

Class

StringAssetTest

Namespace

Assetic\Test\Asset

Code

public function testLastModified() {
  $asset = new StringAsset('');
  $asset
    ->setLastModified(123);
  $this
    ->assertEquals(123, $asset
    ->getLastModified(), '->getLastModified() return the set last modified value');
}