mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Merge pull request #690 from webtechnick/2.1
No longer suppress include error for PHPUnit loading.
This commit is contained in:
commit
645e981cf2
1 changed files with 6 additions and 16 deletions
|
@ -136,24 +136,14 @@ class CakeTestSuiteDispatcher {
|
|||
* @return boolean true if found, false otherwise
|
||||
*/
|
||||
public function loadTestFramework() {
|
||||
$found = $path = null;
|
||||
|
||||
if (@include 'PHPUnit' . DS . 'Autoload.php') {
|
||||
$found = true;
|
||||
}
|
||||
|
||||
if (!$found) {
|
||||
foreach (App::path('vendors') as $vendor) {
|
||||
if (is_dir($vendor . 'PHPUnit')) {
|
||||
$path = $vendor;
|
||||
}
|
||||
}
|
||||
|
||||
if ($path && ini_set('include_path', $path . PATH_SEPARATOR . ini_get('include_path'))) {
|
||||
$found = include 'PHPUnit' . DS . 'Autoload.php';
|
||||
foreach (App::path('vendors') as $vendor) {
|
||||
if (is_dir($vendor . 'PHPUnit')) {
|
||||
ini_set('include_path', $vendor . PATH_SEPARATOR . ini_get('include_path'));
|
||||
break;
|
||||
}
|
||||
}
|
||||
return $found;
|
||||
|
||||
return include 'PHPUnit' . DS . 'Autoload.php';
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue