name); } /** * @testdox The branch name can be set during initialization and returned * @covers phpOMS\Utils\Git\Branch * @group framework */ public function testConstructInputOutput() : void { $branch = new Branch('test'); self::assertEquals('test', $branch->name); } }