Codeception\Command\GeneratePhpunitBootstrap::getTestsuiteEntry PHP Method

getTestsuiteEntry() protected method

protected getTestsuiteEntry ( $args )
    protected function getTestsuiteEntry($args)
    {
        $template = <<<'XML'
<testsuite name="{{{name}}}">
      <directory suffix="{{{suffix}}}.php" phpVersion="5.4.0" phpVersionOperator=">=">{{{pathToFiles}}}</directory>
    </testsuite>
XML;
        $entry = $this->compileTemplate($args, $template);
        return $entry;
    }