Mutagenesis\Runner\RunnerAbstract::getOptions PHP Метод

getOptions() публичный Метод

Compile all necessary options for the test framework adapter
public getOptions ( ) : array
Результат array
    public function getOptions()
    {
        $options = array('src' => $this->getSourceDirectory(), 'tests' => $this->getTestDirectory(), 'base' => $this->getBaseDirectory(), 'cache' => $this->getCacheDirectory(), 'clioptions' => $this->getAdapterOptions(), 'constraint' => $this->getAdapterConstraint());
        $options = $options + $this->_options;
        return $options;
    }