/opt/cpanel/ea-wappspector/vendor/squizlabs/php_codesniffer/tests
NameSizeModeActions
Core/-0755rm
EndToEnd/-0755rm
Standards/-0755rm
AllTests.php15360644editdlrm
bootstrap.php32570644editdlrm
ConfigDouble.php77940644editdlrm
FileList.php24190644editdlrm
TestSuite.php8480644editdlrm
TestSuite7.php8660644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/squizlabs/php_codesniffer/tests/TestSuite.php (848B)
* @copyright 2006-2015 Squiz Pty Ltd (ABN 77 084 670 600) * @license https://github.com/PHPCSStandards/PHP_CodeSniffer/blob/HEAD/licence.txt BSD Licence */ namespace PHP_CodeSniffer\Tests; use PHPUnit\Framework\TestResult; use PHPUnit\Framework\TestSuite as PHPUnit_TestSuite; class TestSuite extends PHPUnit_TestSuite { /** * Runs the tests and collects their result in a TestResult. * * @param \PHPUnit\Framework\TestResult $result A test result. * * @return \PHPUnit\Framework\TestResult */ public function run(TestResult $result=null) { $result = parent::run($result); printPHPCodeSnifferTestOutput(); return $result; }//end run() }//end class