コード例 #1
0
ファイル: SuccessCept.php プロジェクト: hitechdk/Codeception
<?php

$I = new ScenarioGuy($scenario);
$I->wantTo('check that suite config is available');
$I->amInPath('.');
$I->seeFileFound('scenario.suite.yml');
コード例 #2
0
ファイル: FailedCept.php プロジェクト: hitechdk/Codeception
<?php

$I = new ScenarioGuy($scenario);
$I->wantTo('fail when file is not found');
$I->amInPath('.');
$I->seeFileFound('games.zip');
コード例 #3
0
ファイル: SubStepsCept.php プロジェクト: hitechdk/Codeception
<?php

$I = new ScenarioGuy($scenario);
$I->wantTo('run scenario substeps');
$I->amInPath('.');
$I->seeCodeCoverageFilesArePresent();