Example #1
0
 public function testBranch()
 {
     $project = new Project('Twig Local');
     $this->assertEquals('master', $project->getBranch());
     $project->setBranch('new-feature');
     $this->assertEquals('new-feature', $project->getBranch());
 }