Codeception\Command\WPBootstrap::createIntegrationSuite PHP Method

createIntegrationSuite() protected method

protected createIntegrationSuite ( $actor = 'Integration' )
    protected function createIntegrationSuite($actor = 'Integration')
    {
        $suiteConfig = $this->getIntegrationSuiteConfig($actor);
        $str = "# Codeception Test Suite Configuration\n\n";
        $str .= "# Suite for integration tests.\n";
        $str .= "# Load WordPress and test classes that rely on its functions and classes.\n";
        $str .= "\n\n";
        $str .= $suiteConfig;
        $this->createSuite('integration', $actor, $str);
    }