You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
543 B

  1. <?php
  2. /*
  3. * @copyright NetMonsters <team@netmonsters.ru>
  4. * @link http://netmonsters.ru
  5. * @package Majestic
  6. * @subpackage UnitTests
  7. * @since 2011-12-02
  8. *
  9. * Test set for MySQL
  10. */
  11. require_once 'model/MySQLiDriverTest.php';
  12. require_once 'model/MySQLiStatementTest.php';
  13. class PackageMySQLTests
  14. {
  15. public static function suite()
  16. {
  17. $suite = new PHPUnit_Framework_TestSuite('MySQL');
  18. $suite->addTestSuite('MySQLiDriverTest');
  19. $suite->addTestSuite('MySQLiStatementTest');
  20. return $suite;
  21. }
  22. }