PHPUnit_Runner_IncludePathTestCollector::__construct PHP Метод

__construct() публичный Метод

public __construct ( array $paths = [], mixed $suffixes = ['Test.php', '.phpt'], mixed $prefixes = [] )
$paths array
$suffixes mixed
$prefixes mixed
    public function __construct(array $paths = array(), $suffixes = array('Test.php', '.phpt'), $prefixes = array())
    {
        if (!empty($paths)) {
            $this->paths = $paths;
        } else {
            $this->paths = explode(PATH_SEPARATOR, get_include_path());
        }
        $this->suffixes = $suffixes;
        $this->prefixes = $prefixes;
    }
PHPUnit_Runner_IncludePathTestCollector