mageekguy\atoum\test\adapter\call::__construct PHP Method

__construct() public method

public __construct ( $function = null, array $arguments = null, mageekguy\atoum\test\adapter\call\decorator $decorator = null )
$arguments array
$decorator mageekguy\atoum\test\adapter\call\decorator
    public function __construct($function = null, array $arguments = null, adapter\call\decorator $decorator = null)
    {
        if ($function !== null) {
            $this->setFunction($function);
        }
        $this->arguments = $arguments;
        $this->setDecorator($decorator);
    }