ConfigExtendsCest.php 371 B

123456789101112131415161718
  1. <?php
  2. class ConfigExtendsCest
  3. {
  4. /**
  5. * @param CliGuy $I
  6. */
  7. public function runIncludedSuites(\CliGuy $I)
  8. {
  9. $I->amInPath('tests/data/config_extends');
  10. $I->executeCommand('run');
  11. $I->seeInShellOutput('UnitCest');
  12. $I->seeInShellOutput('OK (1 test, 1 assertion)');
  13. $I->dontSeeInShellOutput('Exception');
  14. }
  15. }