dummy.test.php 208 B

123456789101112
  1. <?php //$id$
  2. //require_once('simpletest/autorun.php');
  3. class TestDummy extends UnitTestCase
  4. {
  5. function testDummyValues()
  6. {
  7. $this->assertFalse(false);
  8. $this->assertTrue(true);
  9. }
  10. }
  11. ?>