remove incorrectly added (duplicate) test (only just added)
[civicrm-core.git] / tests / phpunit / CRM / Case / AllTests.php
1 <?php
2
3 /**
4 * Include parent class definition
5 */
6 require_once 'CiviTest/CiviTestSuite.php';
7
8 /**
9 * Class containing all test suites
10 *
11 * @package CiviCRM
12 */
13 class CRM_Case_AllTests extends CiviTestSuite {
14 private static $instance = NULL;
15
16 /**
17 *
18 */
19 private static function getInstance() {
20 if (is_null(self::$instance)) {
21 self::$instance = new self;
22 }
23 return self::$instance;
24 }
25
26 /**
27 * Build test suite dynamically
28 */
29 public static function suite() {
30 $inst = self::getInstance();
31 return $inst->implSuite(__FILE__);
32 }
33 }