Updated LogTest
This commit is contained in:
parent
1e7a74d6ef
commit
92107d4018
1 changed files with 74 additions and 0 deletions
74
tests/LogLib/LogTest.php
Normal file
74
tests/LogLib/LogTest.php
Normal file
|
@ -0,0 +1,74 @@
|
|||
<?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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue