| 1234567891011121314151617 | <?phpclass ConfigExtendsCest{    /**     * @param CliGuy $I     */    public function runIncludedSuites(\CliGuy $I)    {        $I->amInPath('tests/data/config_extends');        $I->executeCommand('run');        $I->seeInShellOutput('UnitCest');        $I->seeInShellOutput('OK (1 test, 1 assertion)');        $I->dontSeeInShellOutput('Exception');    }}
 |