Your IP : 216.73.216.79


Current Path : /var/www/html/dyna-project/vendor/codeception/base/tests/cli/
Upload File :
Current File : /var/www/html/dyna-project/vendor/codeception/base/tests/cli/MixedIncludeCest.php

<?php
class MixedIncludeCest
{
    /**
     * @after checkAllSuitesExecuted
     * @param CliGuy $I
     */
    public function runIncludedSuites(\CliGuy $I)
    {
        $I->amInPath('tests/data/included_mix');
        $I->executeCommand('run');
    }

    /**
     * @after checkAllSuitesExecuted
     * @param \CliGuy $I
     */
    public function runIncludedSuiteFromCurrentDir(\CliGuy $I)
    {
        $I->executeCommand('run -c tests/data/included_mix');
    }

    protected function checkAllSuitesExecuted(\CliGuy $I)
    {
        $I->seeInShellOutput('AcmePack.unit Tests (1)');
        $I->seeInShellOutput('Unit Tests (1)');
    }
}