ParaTest\Runners\PHPUnit\Configuration::getBootstrap PHP Method

getBootstrap() public method

Get the bootstrap PHPUnit configuration attribute
public getBootstrap ( ) : string
return string The bootstrap attribute or empty string if not set
    public function getBootstrap()
    {
        if ($this->xml) {
            return (string) $this->xml->attributes()->bootstrap;
        } else {
            return '';
        }
    }