assertStringEqualsFile($path, $logFile->getContent()); } public function testGetPathReturnsConstructorArgument(): void { $path = __DIR__ . "/../../../data/simple.log"; $logFile = new PathLogFile($path); $this->assertSame($path, $logFile->getPath()); } }