| 12345678910111213141516171819202122232425262728 | <?phpclass SecondTestIsExecutedWhenTheFirstTestFailsCest{    public function testIsExecuted(CliGuy $I)    {        $I->wantTo('see that the second test is executed');        $I->amInPath('tests/data/first_test_fails');        $I->executeFailCommand('run --xml --no-ansi');        $I->seeInShellOutput('Tests: 2, Assertions: 1, Errors: 1');        $I->seeInShellOutput('E twoTestsCest: Failing');        $I->seeInShellOutput('+ twoTestsCest: Successful');    }    public function endTestEventIsEmitted(CliGuy $I)    {        if (\PHPUnit\Runner\Version::series() >= 7) {            throw new \Codeception\Exception\Skip('Not for PHPUnit 7');        }        $I->wantTo('see that all start and end events are emitted');        $I->amInPath('tests/data/first_test_fails');        $I->executeFailCommand('run --xml --no-ansi --report -o "reporters: report: CustomReporter"');        $I->seeInShellOutput('STARTED: twoTestsCest: Failing');        $I->seeInShellOutput('ENDED: twoTestsCest: Failing');        $I->seeInShellOutput('STARTED: twoTestsCest: Successful');        $I->seeInShellOutput('ENDED: twoTestsCest: Successful');    }}
 |