phpOMS/tests/Utils/Git/BranchTest.php

46 lines
1000 B
PHP

<?php
/**
* Orange Management
*
* PHP Version 7.4
*
* @package tests
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace phpOMS\tests\Utils\Git;
use phpOMS\Utils\Git\Branch;
/**
* @testdox phpOMS\tests\Utils\Git\BranchTest: Git branch
*
* @internal
*/
class BranchTest extends \PHPUnit\Framework\TestCase
{
/**
* @testdox The branch has the expected default values after initialization
* @covers phpOMS\Utils\Git\Branch
*/
public function testDefault() : void
{
$branch = new Branch();
self::assertEquals('', $branch->getName());
}
/**
* @testdox The branch name can be set during initialization and returned
* @covers phpOMS\Utils\Git\Branch
*/
public function testConstructInputOutput() : void
{
$branch = new Branch('test');
self::assertEquals('test', $branch->getName());
}
}