mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
87 lines
2.2 KiB
PHP
87 lines
2.2 KiB
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\Author;
|
|
|
|
/**
|
|
* @testdox phpOMS\tests\Utils\Git\AuthorTest: Git author
|
|
*
|
|
* @internal
|
|
*/
|
|
class AuthorTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
/**
|
|
* @testdox The author has the expected default values after initialization
|
|
* @covers phpOMS\Utils\Git\Author
|
|
*/
|
|
public function testDefault() : void
|
|
{
|
|
$author = new Author();
|
|
self::assertEquals('', $author->getName());
|
|
self::assertEquals('', $author->getEmail());
|
|
self::assertEquals(0, $author->getCommitCount());
|
|
self::assertEquals(0, $author->getAdditionCount());
|
|
self::assertEquals(0, $author->getRemovalCount());
|
|
}
|
|
|
|
/**
|
|
* @testdox The author name and email can be set during initialization and returned
|
|
* @covers phpOMS\Utils\Git\Author
|
|
*/
|
|
public function testConstructInputOutput() : void
|
|
{
|
|
$author = new Author('test', 'email');
|
|
self::assertEquals('test', $author->getName());
|
|
self::assertEquals('email', $author->getEmail());
|
|
}
|
|
|
|
/**
|
|
* @testdox The commit count can be set and returned
|
|
* @covers phpOMS\Utils\Git\Author
|
|
*/
|
|
public function testCommitCountInputOutput() : void
|
|
{
|
|
$author = new Author('test', 'email');
|
|
|
|
$author->setCommitCount(1);
|
|
self::assertEquals(1, $author->getCommitCount());
|
|
}
|
|
|
|
/**
|
|
* @testdox The addition count can be set and returned
|
|
* @covers phpOMS\Utils\Git\Author
|
|
*/
|
|
public function testAdditionCountInputOutput() : void
|
|
{
|
|
$author = new Author('test', 'email');
|
|
|
|
$author->setAdditionCount(2);
|
|
self::assertEquals(2, $author->getAdditionCount());
|
|
}
|
|
|
|
/**
|
|
* @testdox The removal count can be set and returned
|
|
* @covers phpOMS\Utils\Git\Author
|
|
*/
|
|
public function testRemovalCountInputOutput() : void
|
|
{
|
|
$author = new Author('test', 'email');
|
|
|
|
$author->setRemovalCount(3);
|
|
self::assertEquals(3, $author->getRemovalCount());
|
|
}
|
|
}
|