Blame view

vendor/codeception/base/tests/cli/GroupEventsCept.php 410 Bytes
2e86c939   xu   “首次提交”
1
2
3
4
5
6
7
8
9
<?php
$I = new CliGuy($scenario);
$I->wantTo('see that my group events fire only once');
$I->amInPath('tests/data/claypit');
$I->executeCommand('run dummy -g countevents -c codeception_grouped.yml --no-colors');
$I->seeInShellOutput('Group Before Events: 1');
$I->dontSeeInShellOutput('Group Before Events: 2');
$I->seeInShellOutput('Group After Events: 1');
$I->dontSeeInShellOutput('Group After Events: 2');