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');
 }
Exemplo n.º 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());
     }
 }
Exemplo n.º 3
0
 function GroupTest($label = false) {
     parent::TestSuite($label);
 }
Exemplo n.º 4
0
 public function __construct()
 {
     parent::TestSuite('All unit tests of Tidbit');
     $this->addAllTests();
 }