Your IP : 216.73.216.79


Current Path : /var/www/html/hr/vendor/codeception/base/tests/cli/
Upload File :
Current File : /var/www/html/hr/vendor/codeception/base/tests/cli/CodeceptionYmlInTestsDirCest.php

<?php
class CodeceptionYmlInTestsDirCest
{
    /**
     * @param CliGuy $I
     */
    public function runTestPath(\CliGuy $I)
    {
        $I->amInPath('tests/data/codeception_yml_in_tests_dir');
        $I->executeCommand('run unit/ExampleCest.php');
        
        $I->seeResultCodeIs(0);
        $I->dontSeeInShellOutput('RuntimeException');
        $I->dontSeeInShellOutput('could not be found');
    }
}