67 lines
646 B
PHP
67 lines
646 B
PHP
<?php
|
|
|
|
class ProfilerTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function testEnabled()
|
|
{
|
|
// $this->assertTrue(Profiler::enabled());
|
|
}
|
|
|
|
public function testDisabled()
|
|
{
|
|
// $this->assertFalse(Profiler::enabled());
|
|
}
|
|
|
|
public function testEnabledType()
|
|
{
|
|
|
|
}
|
|
|
|
public function testDisabledType()
|
|
{
|
|
|
|
}
|
|
|
|
public function testLogArray()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
public function testLogObject()
|
|
{
|
|
|
|
}
|
|
|
|
public function testLogTimer()
|
|
{
|
|
|
|
}
|
|
|
|
public function testLogString()
|
|
{
|
|
|
|
}
|
|
|
|
public function testLogQuery()
|
|
{
|
|
|
|
}
|
|
|
|
public function testTimerStart()
|
|
{
|
|
|
|
}
|
|
|
|
public function testTimerEnd()
|
|
{
|
|
|
|
}
|
|
|
|
public function testReport()
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
?>
|