コード例 #1
0
ファイル: ProjectTest.php プロジェクト: rouffj/Sismo
 public function testBranch()
 {
     $project = new Project('Twig Local');
     $this->assertEquals('master', $project->getBranch());
     $project->setBranch('new-feature');
     $this->assertEquals('new-feature', $project->getBranch());
 }