/**
  * Check $testDB_conf and create mocked DB class.
  */
 function __construct($label)
 {
     global $testDB_conf;
     if (!isset($testDB_conf['name'])) {
         die('Please set the DB name to use for tests in /tests/config.php or /tests/config.OVERRIDE.php. See $testDB_conf there..');
     }
     Mock::generatePartial('DB', 'EvoMockDbUnitTestCase_DB_' . get_class($this), $this->mocked_DB_methods);
     parent::__construct($label);
 }
 function __construct()
 {
     parent::__construct('ExtLibs functions test');
 }
 function __construct()
 {
     parent::__construct('Image functions test');
 }
 function __construct()
 {
     parent::__construct('Param functions test');
 }
 function __construct()
 {
     parent::__construct('URL functions test');
 }
 function __construct()
 {
     parent::__construct('Locale functions test');
 }
 function __construct()
 {
     parent::__construct('Syntax tests');
 }
 function __construct()
 {
     parent::__construct('Miscellaneous functions test');
 }
 function __construct()
 {
     parent::__construct('Hit class test');
 }
 function __construct()
 {
     parent::__construct('Security tests');
 }
 function __construct()
 {
     parent::__construct('Form class tests');
 }