41 lines
343 B
PHP
41 lines
343 B
PHP
<?php
|
|
|
|
class LogTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function testInformation()
|
|
{
|
|
|
|
}
|
|
|
|
public function testWarning()
|
|
{
|
|
|
|
}
|
|
|
|
public function testError()
|
|
{
|
|
|
|
}
|
|
|
|
public function testSlowQuery()
|
|
{
|
|
|
|
}
|
|
|
|
public function testTransaction()
|
|
{
|
|
|
|
}
|
|
|
|
public function testPHPError()
|
|
{
|
|
|
|
}
|
|
|
|
public function testQuery()
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
?>
|