コード例 #1
0
ファイル: VideoOGGTest.php プロジェクト: infinity-next/sleuth
 public function testGood()
 {
     $detective = new VideoDetective();
     $detective->check(__DIR__ . "/files/normal.ogv");
     $this->assertEquals('ogg', $detective->getExtension());
 }
コード例 #2
0
ファイル: VideoMP4Test.php プロジェクト: infinity-next/sleuth
 public function testMP4()
 {
     $detective = new VideoDetective();
     $detective->check(__DIR__ . "/files/normal.mp4");
     $this->assertEquals('mp4', $detective->getExtension());
 }