Merge pull request #17646 from colemanw/isMultilingual
[civicrm-core.git] / tests / phpunit / Civi / AllTests.php
CommitLineData
4339bc55
TO
1<?php
2// vim: set si ai expandtab tabstop=4 shiftwidth=4 softtabstop=4:
3
4/**
5 * File for the CRM_AllTests class
6 *
7 * (PHP 5)
8 *
6c6e6187
TO
9 * @author Walt Haas <walt@dharmatech.org> (801) 534-1262
10 * @copyright Copyright CiviCRM LLC (C) 2009
11 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html
4339bc55 12 * GNU Affero General Public License version 3
6c6e6187
TO
13 * @version $Id: AllTests.php 40328 2012-05-11 23:06:13Z allen $
14 * @package CiviCRM
4339bc55
TO
15 *
16 * This file is part of CiviCRM
17 *
18 * CiviCRM is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU Affero General Public License
20 * as published by the Free Software Foundation; either version 3 of
21 * the License, or (at your option) any later version.
22 *
23 * CiviCRM is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU Affero General Public License for more details.
27 *
28 * You should have received a copy of the GNU Affero General Public
29 * License along with this program. If not, see
30 * <http://www.gnu.org/licenses/>.
31 */
32
4339bc55
TO
33/**
34 * Class containing all CRM test suites
35 *
6c6e6187 36 * @package CiviCRM
4339bc55
TO
37 */
38class Civi_AllTests extends CiviTestSuite {
39 private static $instance = NULL;
40
41 /**
4339bc55
TO
42 */
43 private static function getInstance() {
44 if (is_null(self::$instance)) {
3891aa45 45 self::$instance = new self();
4339bc55
TO
46 }
47 return self::$instance;
48 }
49
50 /**
eceb18cc 51 * Build test suite dynamically.
4339bc55
TO
52 */
53 public static function suite() {
54 $inst = self::getInstance();
55 return $inst->implSuite(__FILE__);
56 }
96025800 57
4339bc55
TO
58}
59// class AllTests
60
61// -- set Emacs parameters --
62// Local variables:
63// mode: php;
64// tab-width: 4
65// c-basic-offset: 4
66// c-hanging-comment-ender-p: nil
67// indent-tabs-mode: nil
68// End: