phpOMS/tests/Utils/Git/GitTest.php
2023-06-17 03:13:39 +02:00

36 lines
644 B
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.1
*
* @package tests
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\tests\Utils\Git;
use phpOMS\Utils\Git\Git;
/**
* @testdox phpOMS\tests\Utils\Git\GitTest: Git utilities
*
* @internal
*/
final class GitTest extends \PHPUnit\Framework\TestCase
{
/**
* @testdox The git path can be returned
* @covers phpOMS\Utils\Git\Git
* @group framework
*/
public function testBinary() : void
{
self::assertEquals('/usr/bin/git', Git::getBin());
}
}