Blame view

vendor/codeception/base/tests/coverage/RemoteWithEnvironmentXmlCept.php 378 Bytes
2e86c939   xu   “首次提交”
1
2
3
4
5
6
7
8
9
<?php
$I = new CoverGuy($scenario);
$I->wantTo('try generate codecoverage xml report with environment');
$I->amInPath('tests/data/sandbox');
$I->executeCommand('run remote --coverage-xml --env default');
$I->seeInShellOutput('Code Coverage Report');
$I->dontSeeInShellOutput('RemoteException');
$I->seeFileFound('coverage.xml', 'tests/_output');
$I->seeCoverageStatsNotEmpty();