GroupEventsCept.php 410 B

123456789
  1. <?php
  2. $I = new CliGuy($scenario);
  3. $I->wantTo('see that my group events fire only once');
  4. $I->amInPath('tests/data/claypit');
  5. $I->executeCommand('run dummy -g countevents -c codeception_grouped.yml --no-colors');
  6. $I->seeInShellOutput('Group Before Events: 1');
  7. $I->dontSeeInShellOutput('Group Before Events: 2');
  8. $I->seeInShellOutput('Group After Events: 1');
  9. $I->dontSeeInShellOutput('Group After Events: 2');