Mutagenesis\Console::setBootstrap PHP Метод

setBootstrap() защищенный статический Метод

Set the path to a bootstrap file used when testing. This allows for registering autoloaders and such, for example TestHelper.php or Bootstrap.php are common for PHPUnit.
protected static setBootstrap ( RunnerAbstract $runner )
$runner Mutagenesis\Runner\RunnerAbstract
    protected static function setBootstrap(\Mutagenesis\Runner\RunnerAbstract $runner)
    {
        if (isset(self::$_options['bootstrap'])) {
            $runner->setBootstrap(self::$_options['bootstrap']);
        }
    }