pickles/tests/classes/LogTest.php
Joshua Sherman 3fee938c2a Stubbed out and wrote some tests
Will code tests for the stub files in the AM.
2014-01-02 01:17:25 -05:00

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()
{
}
}
?>