BeSimpleSoap/tests/bootstrap.php

29 lines
902 B
PHP
Raw Normal View History

2011-09-04 00:29:19 +02:00
<?php
error_reporting(E_ALL | E_STRICT);
// register silently failing autoloader
spl_autoload_register(function($class) {
if (0 === strpos($class, 'BeSimple\Tests\\')) {
2011-10-09 19:13:12 +02:00
$path = __DIR__.'/'.strtr($class, '\\', '/').'.php';
2011-09-04 00:29:19 +02:00
if (file_exists($path) && is_readable($path)) {
require_once $path;
return true;
}
2011-09-10 18:51:04 +02:00
} elseif (0 === strpos($class, 'BeSimple\SoapCommon\\')) {
2011-09-04 00:29:19 +02:00
$path = __DIR__.'/../src/'.($class = strtr($class, '\\', '/')).'.php';
if (file_exists($path) && is_readable($path)) {
require_once $path;
2011-09-10 18:51:04 +02:00
return true;
}
} elseif (0 === strpos($class, 'vfsStream')) {
$path = __DIR__.'/../vendor/vfsStream/src/main/php/org/bovigo/vfs/'.$class.'.php';
if (file_exists($path) && is_readable($path)) {
require_once $path;
2011-09-04 00:29:19 +02:00
return true;
}
}
});