Merge pull request #14922 from civicrm/5.16
[civicrm-core.git] / tests / phpunit / CRM / Core / AllTests.php
index 7460038140890f4f7a209d0717cdc39cef8787ac..d37a41ca333b7915def8355808b019de3de10054 100644 (file)
  *   <http://www.gnu.org/licenses/>.
  */
 
-/**
- *  Include parent class definition
- */
-require_once 'CiviTest/CiviTestSuite.php';
-
 /**
  *  Class containing all test suites
  *
@@ -47,18 +42,19 @@ class CRM_Core_AllTests extends CiviTestSuite {
    */
   private static function getInstance() {
     if (is_null(self::$instance)) {
-      self::$instance = new self;
+      self::$instance = new self();
     }
     return self::$instance;
   }
 
   /**
-   *  Build test suite dynamically
+   *  Build test suite dynamically.
    */
   public static function suite() {
     $inst = self::getInstance();
     return $inst->implSuite(__FILE__);
   }
+
 }
 // class CRM_Core_AllTests