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/RunSingleTestWithIncludeCest.php

<?php

class RunSingleTestWithIncludeCest
{
    public function run(\CliGuy $I)
    {
        $I->amInPath('tests/data/single_test_with_include');
        $I->wantTo('execute one test with include in config');

        $I->executeCommand('run unit/ExampleCest.php');

        $I->seeResultCodeIs(0);
        $I->dontSeeInShellOutput('RuntimeException');
        $I->dontSeeInShellOutput('could not be found');
    }
}