Codeception\Command\WPBootstrapPyramid::createServiceSuite PHP Method

createServiceSuite() protected method

protected createServiceSuite ( $actor = 'Service' )
    protected function createServiceSuite($actor = 'Service')
    {
        $suiteConfig = $this->getFunctionalSuiteConfig($actor);
        $str = "# Codeception Test Suite Configuration\n\n";
        $str .= "# Suite for service tests.\n";
        $str .= "# Emulate web requests and make the WordPress application process them.\n";
        $str .= $suiteConfig;
        $this->createSuite('service', $actor, $str);
    }