1
0
This repository has been archived on 2025-06-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
LuckyCoinkydink/bundled-libs/katzgrau/klogger/tests/LoggerTest.php

21 lines
415 B
PHP

<?php
use Katzgrau\KLogger\Logger;
class LoggerTest extends PHPUnit_Framework_TestCase
{
private $logPath;
private $logger;
public function setUp()
{
$this->logPath = __DIR__.'/logs';
$this->logger = new Logger($this->logPath);
}
public function testImplementsPsr3LoggerInterface()
{
$this->assertInstanceOf('Psr\Log\LoggerInterface', $this->logger);
}
}