Stubbed out Profiler tests
This commit is contained in:
parent
bf817d52f4
commit
161d0e5051
2 changed files with 69 additions and 2 deletions
|
@ -1,9 +1,9 @@
|
||||||
Cache
|
Write tests for Profiler (it's all stubbed out though)
|
||||||
|
|
||||||
Config
|
Config
|
||||||
Database
|
Database
|
||||||
Model
|
Model
|
||||||
Module
|
Module
|
||||||
Profiler
|
|
||||||
Security
|
Security
|
||||||
Session
|
Session
|
||||||
Validate
|
Validate
|
||||||
|
|
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