ParaTest\Runners\PHPUnit\RunnerIntegrationTest::setUp PHP Method

setUp() protected method

protected setUp ( )
    protected function setUp()
    {
        $this->skipIfCodeCoverageNotEnabled();
        $this->options = array('path' => FIXTURES . DS . 'failing-tests', 'phpunit' => PHPUNIT, 'coverage-php' => sys_get_temp_dir() . DS . 'testcoverage.php', 'bootstrap' => BOOTSTRAP);
        if (ParaTestCommand::isWhitelistSupported()) {
            $this->options['whitelist'] = FIXTURES . DS . 'failing-tests';
        }
        $this->runner = new Runner($this->options);
    }