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