index.php 243 B

123456789101112
  1. <?php
  2. require_once ("testConfig.inc");
  3. class AllTests extends TestSuite
  4. {
  5. public function AllTests()
  6. {
  7. $this->TestSuite('bifrost');
  8. $this->collect(dirname(__FILE__), new SimplePatternCollector("/Test.php/"));
  9. }
  10. }