BiFace_Server_Lite/vendor/codeception/base/tests/coverage/RemoteWithXmlCept.php
2020-03-27 10:13:51 +07:00

9 lines
309 B
PHP

<?php
$I = new CoverGuy($scenario);
$I->wantTo('try generate remote codecoverage xml report');
$I->amInPath('tests/data/sandbox');
$I->executeCommand('run remote --coverage-xml');
$I->seeInShellOutput('Code Coverage Report');
$I->seeFileFound('coverage.xml', 'tests/_output');
$I->seeCoverageStatsNotEmpty();