RunSingleTestWithIncludeCest.php 418 B

1234567891011121314151617
  1. <?php
  2. class RunSingleTestWithIncludeCest
  3. {
  4. public function run(\CliGuy $I)
  5. {
  6. $I->amInPath('tests/data/single_test_with_include');
  7. $I->wantTo('execute one test with include in config');
  8. $I->executeCommand('run unit/ExampleCest.php');
  9. $I->seeResultCodeIs(0);
  10. $I->dontSeeInShellOutput('RuntimeException');
  11. $I->dontSeeInShellOutput('could not be found');
  12. }
  13. }