public function AssetReferenceTest::getMethodAndRetVal

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Asset/AssetReferenceTest.php, line 45

Class

AssetReferenceTest

Namespace

Assetic\Test\Asset

Code

public function getMethodAndRetVal() {
  return array(
    array(
      'getContent',
      'asdf',
    ),
    array(
      'getSourceRoot',
      'asdf',
    ),
    array(
      'getSourcePath',
      'asdf',
    ),
    array(
      'getTargetPath',
      'asdf',
    ),
    array(
      'getLastModified',
      123,
    ),
  );
}