コード例 #1
0
ファイル: HttpAssetTest.php プロジェクト: roadrunner/assetic
 public function testGetLastModified()
 {
     if (!extension_loaded('openssl')) {
         $this->markTestSkipped('The OpenSSL extension is not loaded.');
     }
     $asset = new HttpAsset(self::JQUERY);
     $this->assertInternalType('integer', $asset->getLastModified(), '->getLastModified() returns an integer');
 }
コード例 #2
0
ファイル: HttpAssetTest.php プロジェクト: selimcr/servigases
 /**
  * @group http
  */
 public function testGetLastModified()
 {
     $asset = new HttpAsset(self::JQUERY);
     $this->assertInternalType('integer', $asset->getLastModified(), '->getLastModified() returns an integer');
 }