blob: d1254b7abe2ad4c72d73666c6d2767a260e4ab43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
require_once(dirname(__FILE__).'/../unit_tester.php');
require_once(dirname(__FILE__).'/../reporter.php');
class TestOfLogging extends UnitTestCase
{
function testCreatingNewFile() {
$this->assertFalse(false);
//$log->message('Should write this to a file');
$this->assertTrue(true);
}
}
$test = new TestOfLogging();
$test->run(new HtmlReporter());
?>
|