ParaTest\Console\Testers\PHPUnit::hasPath PHP Method

hasPath() protected method

Returns whether or not a test path has been supplied via option or regular input
protected hasPath ( Symfony\Component\Console\Input\InputInterface $input ) : boolean
$input Symfony\Component\Console\Input\InputInterface
return boolean
    protected function hasPath(InputInterface $input)
    {
        $argument = $input->getArgument('path');
        $option = $input->getOption('path');
        return $argument || $option;
    }