function SqlWrapperNGTestSuite()
 {
     parent::TestSuite("SQLWrapper New Generation");
     $this->addTestFile('core/tests/sqlwrapperng/base.sqlcreator.class.test.php');
     $this->addTestFile('core/tests/sqlwrapperng/mysql.sqlcreator.class.test.php');
     $this->addTestFile('core/tests/sqlwrapperng/datafield.class.test.php');
     $this->addTestFile('core/tests/sqlwrapperng/datatable.class.test.php');
 }
예제 #2
0
 function __construct()
 {
     parent::TestSuite("All Generic Tephlon Tests");
     $tFiles = glob("*Test.php");
     foreach ($tFiles as $f) {
         echo "adding {$f}";
         parent::addFile($f);
         parent::run(new TextReporter());
     }
 }
예제 #3
0
파일: test_case.php 프로젝트: nuckey/moodle
 function GroupTest($label = false) {
     parent::TestSuite($label);
 }
예제 #4
0
파일: AllTests.php 프로젝트: shep517/Tidbit
 public function __construct()
 {
     parent::TestSuite('All unit tests of Tidbit');
     $this->addAllTests();
 }