Merge pull request #14348 from mattwire/sql_engine_config
[civicrm-core.git] / tests / phpunit / CiviTest / CiviTestSuite.php
index 4dd175274b447a7b75f01dc418fd42fb1b40043f..df8cf92d7507fa78884f767d1e67701d58f94b0c 100644 (file)
@@ -31,7 +31,7 @@
  *
  * @package   CiviCRM
  */
-class CiviTestSuite extends PHPUnit_Framework_TestSuite {
+class CiviTestSuite extends PHPUnit\Framework\TestSuite {
 
   /**
    * Simple name based constructor.
@@ -89,7 +89,7 @@ class CiviTestSuite extends PHPUnit_Framework_TestSuite {
     // also split AllTests to All Tests
     $name = str_replace('AllTests', 'All Tests', $name);
 
-    $suite = new PHPUnit_Framework_TestSuite($name);
+    $suite = new PHPUnit\Framework\TestSuite($name);
     $this->addAllTests($suite, $myfile,
       new SplFileInfo(dirname($myfile))
     );
@@ -99,7 +99,7 @@ class CiviTestSuite extends PHPUnit_Framework_TestSuite {
   /**
    *  Add all test classes *Test and all test suites *Tests in subdirectories
    *
-   * @param PHPUnit_Framework_TestSuite $suite
+   * @param PHPUnit\Framework\TestSuite $suite
    *   Test suite object to add tests to
    * @param $myfile
    * @param SplFileInfo $dirInfo
@@ -108,7 +108,7 @@ class CiviTestSuite extends PHPUnit_Framework_TestSuite {
    * @return void
    */
   protected function addAllTests(
-    PHPUnit_Framework_TestSuite &$suite,
+    PHPUnit\Framework\TestSuite &$suite,
     $myfile, SplFileInfo $dirInfo
   ) {
     //echo get_class($this)."::addAllTests($myfile,".$dirInfo->getRealPath().")\n";
@@ -119,7 +119,8 @@ class CiviTestSuite extends PHPUnit_Framework_TestSuite {
     }
 
     //  Pass 1:  Check all *Tests.php files
-    $addTests = array(); // array(callable)
+    // array(callable)
+    $addTests = array();
     //echo "start Pass 1 on {$dirInfo->getRealPath()}\n";
     $dir = new DirectoryIterator($dirInfo->getRealPath());
     foreach ($dir as $fileInfo) {
@@ -155,7 +156,8 @@ class CiviTestSuite extends PHPUnit_Framework_TestSuite {
     }
 
     //  Pass 2:  Scan all subdirectories
-    $addAllTests = array(); // array(array(0 => $suite, 1 => $file, 2 => SplFileinfo))
+    // array(array(0 => $suite, 1 => $file, 2 => SplFileinfo))
+    $addAllTests = array();
     $dir = new DirectoryIterator($dirInfo->getRealPath());
     //echo "start Pass 2 on {$dirInfo->getRealPath()}\n";
     foreach ($dir as $fileInfo) {
@@ -176,7 +178,8 @@ class CiviTestSuite extends PHPUnit_Framework_TestSuite {
 
     //  Pass 3:  Check all *Test.php files in this directory
     //echo "start Pass 3 on {$dirInfo->getRealPath()}\n";
-    $addTestSuites = array(); // array(className)
+    // array(className)
+    $addTestSuites = array();
     $dir = new DirectoryIterator($dirInfo->getRealPath());
     foreach ($dir as $fileInfo) {
       if ($fileInfo->isReadable() && $fileInfo->isFile()