You are here

public static function PHPUnit_Util_GlobalState::getIncludedFilesAsString in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Util/GlobalState.php \PHPUnit_Util_GlobalState::getIncludedFilesAsString()
1 call to PHPUnit_Util_GlobalState::getIncludedFilesAsString()
PHPUnit_Framework_TestCase::run in vendor/phpunit/phpunit/src/Framework/TestCase.php
Runs the test case and collects the results in a TestResult object. If no TestResult object is passed a new one will be created.

File

vendor/phpunit/phpunit/src/Util/GlobalState.php, line 41

Class

PHPUnit_Util_GlobalState
@since Class available since Release 3.4.0

Code

public static function getIncludedFilesAsString() {
  return static::processIncludedFilesAsString(get_included_files());
}