CorujaDebugTest.php
Go to the documentation of this file.00001 <?php
00002 require_once 'PHPUnit/Extensions/OutputTestCase.php';
00003
00004 require_once dirname( __FILE__ ).'/../../../_start.php';
00005
00010 class CorujaDebugTest extends PHPUnit_Extensions_OutputTestCase
00011 {
00012
00019 protected function setUp()
00020 {
00021 }
00022
00029 protected function tearDown()
00030 {
00031 }
00032
00036 public function testDebug() {
00037
00038
00039
00040 $this->markTestIncomplete(
00041 'This test has not been implemented yet.'
00042 );
00043 }
00044
00048 public function testDebugWithExitTrue() {
00049
00050 CorujaDebug::debug("test",true);
00051
00052 $this->expectOutputRegex("*D I E*");
00053
00054 }
00055 }
00056 ?>