LocalCept.php 451 B

123456789101112
  1. <?php
  2. $I = new CoverGuy($scenario);
  3. $I->wantTo('run local code coverage for cest and test');
  4. $I->amInPath('tests/data/sandbox');
  5. $I->executeCommand('run math MathTest --coverage');
  6. $I->seeInShellOutput('Classes: 100.00%');
  7. $I->seeInShellOutput('Methods: 100.00%');
  8. $I->amGoingTo('run local codecoverage in cest');
  9. $I->executeCommand('run math MathCest --coverage');
  10. $I->seeInShellOutput('Classes: 100.00%');
  11. $I->seeInShellOutput('Methods: 100.00%');