Files
ik-codex/test/tests/Log/File/PathLogFileTest.php
indifferentketchup 66a2fcc5f3 Rename namespace Aternos\Codex to IndifferentKetchup\Codex
Bulk substitution across all PHP files in src/ and test/. Covers
namespace declarations, use statements, fully-qualified class
references, and @package PHPDoc tags. No logic changes.
2026-04-30 15:13:52 +00:00

18 lines
415 B
PHP

<?php
namespace IndifferentKetchup\Codex\Test\Tests\Log\File;
use IndifferentKetchup\Codex\Log\File\PathLogFile;
use PHPUnit\Framework\TestCase;
class PathLogFileTest extends TestCase
{
public function testGetContent(): void
{
$path = __DIR__ . "/../../../data/simple.log";
$logFile = new PathLogFile($path);
$this->assertStringEqualsFile($path, $logFile->getContent());
}
}