You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
323 B
PHTML
15 lines
323 B
PHTML
16 years ago
|
<?php
|
||
|
// $Id: sample_test.php,v 1.1 2006/11/29 13:17:01 pp11 Exp $
|
||
|
|
||
|
class SampleTestForArrayReporter extends UnitTestCase {
|
||
|
|
||
|
function testTrueIsTrue() {
|
||
|
$this->assertTrue(true);
|
||
|
}
|
||
|
|
||
|
function testFalseIsTrue() {
|
||
|
$this->assertFalse(true);
|
||
|
}
|
||
|
|
||
|
}
|
||
|
?>
|