| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 | <?phpclass IncludedCest{    public function _before()    {        \Codeception\Util\FileSystem::doEmptyDir('tests/data/included/_log');        file_put_contents('tests/data/included/_log/.gitkeep', '');    }    /**     * @param CliGuy $I     */    protected function moveToIncluded(\CliGuy $I)    {        $I->amInPath('tests/data/included');    }    /**     * @before moveToIncluded     * @param CliGuy $I     */    public function runSuitesFromIncludedConfigs(\CliGuy $I)    {        $I->executeCommand('run');        $I->seeInShellOutput('[Jazz]');        $I->seeInShellOutput('Jazz.functional Tests');        $I->seeInShellOutput('[Jazz\Pianist]');        $I->seeInShellOutput('Jazz\Pianist.functional Tests');        $I->seeInShellOutput('[Shire]');        $I->seeInShellOutput('Shire.functional Tests');    }    /**     * @before moveToIncluded     * @param CliGuy $I     */    public function runTestsFromIncludedConfigs(\CliGuy $I)    {        $ds = DIRECTORY_SEPARATOR;        $I->executeCommand("run jazz{$ds}tests{$ds}functional{$ds}DemoCept.php", false);        // Suite is not run        $I->dontSeeInShellOutput('[Jazz]');        // DemoCept tests are run        $I->seeInShellOutput('Jazz.functional Tests');        $I->seeInShellOutput('DemoCept');        // Other include tests are not run        $I->dontSeeInShellOutput('[Shire]');        $I->dontSeeInShellOutput('Shire.functional Tests');        $I->dontSeeInShellOutput('[Jazz\Pianist]');        $I->dontSeeInShellOutput('Jazz\Pianist.functional Tests');    }    /**     * @before moveToIncluded     * @param CliGuy $I     */    public function runTestsFromIncludedConfigsNested(\CliGuy $I)    {        $I->executeCommand('run jazz/pianist/tests/functional/PianistCept.php', false);        // Suite is not run        $I->dontSeeInShellOutput('[Jazz\Pianist]');        // DemoCept tests are run        $I->seeInShellOutput('Jazz\Pianist.functional Tests');        $I->seeInShellOutput('PianistCept');        // Other include tests are not run        $I->dontSeeInShellOutput('[Shire]');        $I->dontSeeInShellOutput('Shire.functional Tests');        $I->dontSeeInShellOutput('[Jazz]');        $I->dontSeeInShellOutput('Jazz.functional Tests');    }    /**     * @before moveToIncluded     * @param CliGuy $I     */    public function runTestsFromIncludedConfigsSingleTest(\CliGuy $I)    {        $ds = DIRECTORY_SEPARATOR;        $I->executeCommand("run jazz{$ds}tests{$ds}unit{$ds}SimpleTest.php:testSimple", false);        // Suite is not run        $I->dontSeeInShellOutput('[Jazz]');        // SimpleTest:testSimple is run        $I->seeInShellOutput('Jazz.unit Tests');        $I->dontSeeInShellOutput('Jazz.functional Tests');        $I->seeInShellOutput('SimpleTest');        //  SimpleTest:testSimpler is not run        $I->dontSeeInShellOutput('SimplerTest');        // Other include tests are not run        $I->dontSeeInShellOutput('[Shire]');        $I->dontSeeInShellOutput('Shire.functional Tests');        $I->dontSeeInShellOutput('[Jazz\Pianist]');        $I->dontSeeInShellOutput('Jazz\Pianist.functional Tests');    }    /**     * @before moveToIncluded     * @param CliGuy $I     */    public function runIncludedWithXmlOutput(\CliGuy $I)    {        $I->executeCommand('run --xml');        $I->amInPath('_log');        $I->seeFileFound('report.xml');        $I->seeInThisFile('<testsuite name="Jazz.functional" tests="1" assertions="1"');        $I->seeInThisFile('<testsuite name="Jazz\Pianist.functional" tests="1" assertions="1"');        $I->seeInThisFile('<testsuite name="Shire.functional" tests="1" assertions="1"');        $I->seeInThisFile('<testcase name="Hobbit"');        $I->seeInThisFile('<testcase name="Demo"');        $I->seeInThisFile('<testcase name="Pianist"');    }    /**     * @before moveToIncluded     * @param CliGuy $I     */    public function runIncludedWithHtmlOutput(\CliGuy $I)    {        $I->executeCommand('run --html');        $I->amInPath('_log');        $I->seeFileFound('report.html');        $I->seeInThisFile('Codeception Results');        $I->seeInThisFile('Jazz.functional Tests');        $I->seeInThisFile('Check that jazz musicians can add numbers');        $I->seeInThisFile('Jazz\Pianist.functional Tests');        $I->seeInThisFile('Check that jazz pianists can add numbers');        $I->seeInThisFile('Shire.functional Tests');    }    /**     * @before moveToIncluded     * @group coverage     * @param CliGuy $I     */    public function runIncludedWithCoverage(\CliGuy $I)    {        $I->executeCommand('run --coverage-xml');        $I->amInPath('_log');        $I->seeFileFound('coverage.xml');        $I->seeInThisFile('BillEvans" namespace="Jazz\Pianist">');        $I->seeInThisFile('Musician" namespace="Jazz">');        $I->seeInThisFile('Hobbit" namespace="Shire">');    }    /**     * @before moveToIncluded     * @param CliGuy $I     */    public function buildIncluded(\CliGuy $I)    {        $I->executeCommand('build');        $I->seeInShellOutput('generated successfully');        $I->seeInShellOutput('Jazz\\TestGuy');        $I->seeInShellOutput('Jazz\\Pianist\\TestGuy');        $I->seeInShellOutput('Shire\\TestGuy');    }}
 |