コード例 #1
0
ファイル: GitTest.php プロジェクト: dnaber-de/PHPGit
 /**
  * @expectedException \PHPGit\Exception\GitException
  */
 public function testInvalidGitBinary()
 {
     $git = new Git();
     $git->setBin('/foo/bar');
     $git->getVersion();
 }