Stubbed out Profiler tests

This commit is contained in:
Joshua Sherman 2014-01-04 11:33:13 -05:00
parent bf817d52f4
commit 161d0e5051
2 changed files with 69 additions and 2 deletions

View file

@ -0,0 +1,67 @@
<?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()
{
}
}
?>