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.
postfixadmin/tests/simpletest/ui/array_reporter/sample_test.php

15 lines
323 B
PHP

<?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);
}
}
?>