Codeception\Command\WPBootstrapPyramid::createUiSuite PHP Method

createUiSuite() protected method

protected createUiSuite ( $actor = 'UI' )
    protected function createUiSuite($actor = 'UI')
    {
        $suiteConfig = $this->getAcceptanceSuiteConfig($actor);
        $str = "# Codeception Test Suite Configuration\n\n";
        $str .= "# Suite for UI tests.\n";
        $str .= "# Perform tests using or simulating a browser.\n";
        $str .= $suiteConfig;
        $this->createSuite('ui', $actor, $str);
    }