Piwik\Plugins\TestRunner\Commands\TestsRun::executeTestRun PHP Method

executeTestRun() private method

private executeTestRun ( $command, $params, Symfony\Component\Console\Output\OutputInterface $output )
$output Symfony\Component\Console\Output\OutputInterface
    private function executeTestRun($command, $params, OutputInterface $output)
    {
        $cmd = $this->getCommand($command, $params);
        $output->writeln('Executing command: <info>' . $cmd . '</info>');
        passthru($cmd, $returnVar);
        $output->writeln("");
        $this->returnVar += $returnVar;
    }