for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Remorhaz\UniLex\Example\SimpleExpr\Test\Grammar;
use PHPUnit\Framework\TestCase;
use Remorhaz\UniLex\Example\SimpleExpr\Grammar\ConfigFile;
/**
* @covers \Remorhaz\UniLex\Example\SimpleExpr\Grammar\ConfigFile
*/
class ConfigFileTest extends TestCase
{
public function testGetPath_Called_ReturnsStringgEndsWithConfigFileName(): void
$actualValue = ConfigFile::getPath();
self::assertStringEndsWith(DIRECTORY_SEPARATOR . "Config.php", $actualValue);
}