Merge pull request #8189 from kenwest/CRM-18448
[civicrm-core.git] / tests / phpunit / AllTests.php
index 7d73bf1915d541ac9d619b36e95e4a69d2d0dd0b..bbd44360f7d6b5850c39af708c93f30949f6f611 100644 (file)
  *   <http://www.gnu.org/licenses/>.
  */
 
-/**
- *  Include parent class definition
- */
-require_once 'CiviTest/CiviTestSuite.php';
-
 /**
  *  Class containing all test suites
  *
@@ -44,22 +39,22 @@ class AllTests extends CiviTestSuite {
   private static $instance = NULL;
 
   /**
-   *
    */
   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 AllTests