75 lines
769 B
PHP
75 lines
769 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace LogLib;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
class LogTest extends TestCase
|
||
|
{
|
||
|
|
||
|
public function testDebug()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function testInfo()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function testGetRuntimeOptions()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function testGetOptions()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function testGetApplication()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function testUnregisterExceptionHandler()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function testUnregister()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function testWarning()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function testError()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function testFatal()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function testRegisterExceptionHandler()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function testVerbose()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
public function testRegister()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|