Blame view

vendor/codeception/base/tests/cli/GenerateHelperCept.php 273 Bytes
2e86c939   xu   “首次提交”
1
2
3
4
5
6
7
<?php
$I = new CliGuy\GeneratorSteps($scenario);
$I->wantTo('generate helper');
$I->amInPath('tests/data/sandbox');
$I->executeCommand('generate:helper Db');
$I->seeFileWithGeneratedClass('Db', 'tests/_support/Helper');
$I->seeInThisFile('Db extends \Codeception\Module');