CiviTest - Configure autoloader for test classes
[civicrm-core.git] / tests / phpunit / CRM / AllTests.php
index f42d8f1a1cb48e35634347e8b01e1dab76b0d0c9..dcaa500eb519264a00fa3434243e23dc8921441c 100644 (file)
@@ -44,22 +44,22 @@ class CRM_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