ParaTest\Runners\PHPUnit\SuitePath::__construct PHP Method

__construct() public method

public __construct ( $path, $excludedPaths, $suffix )
    public function __construct($path, $excludedPaths, $suffix)
    {
        if (empty($suffix)) {
            $suffix = self::DEFAULT_SUFFIX;
        }
        $this->path = $path;
        $this->excludedPaths = $excludedPaths;
        $this->suffix = $suffix;
    }