Stubbed out Profiler tests
This commit is contained in:
parent
bf817d52f4
commit
161d0e5051
2 changed files with 69 additions and 2 deletions
67
tests/classes/ProfilerTest.php
Normal file
67
tests/classes/ProfilerTest.php
Normal 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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue