/var/www/vhosts/nabawater/vendor/codeception/base/tests/cli
NameSizeModeActions
_steps/-0775rm
AutoRebuildCept.php5040664editdlrm
BootstrapCest.php30810664editdlrm
BuildCept.php4610664editdlrm
CodeceptionYmlInTestsDirCest.php4130664editdlrm
ConfigBundledSuitesCest.php11320664editdlrm
ConfigExtendsCest.php3710664editdlrm
ConfigNoActorCest.php12390664editdlrm
ConfigParamsCest.php13840664editdlrm
ConfigValidateCest.php12180664editdlrm
ConfigWithPresetsCest.php2410664editdlrm
DataProviderFailuresAndExceptionsCest.php82710664editdlrm
DryRunCest.php8340664editdlrm
ExceptionInBeforeDoesNotMakeFatalErrorCept.php6790664editdlrm
ExtensionsCest.php41510664editdlrm
GenerateCeptCept.php7620664editdlrm
GenerateCestCept.php2200664editdlrm
GenerateFeatureCept.php4780664editdlrm
GenerateGroupCept.php3920664editdlrm
GenerateHelperCept.php2730664editdlrm
GeneratePageObjectCest.php14310664editdlrm
GenerateScenariosCept.php3230664editdlrm
GenerateStepObjectCept.php2990664editdlrm
GenerateSuiteCest.php16390664editdlrm
GenerateTestCept.php3630664editdlrm
GherkinCest.php30780664editdlrm
GlobalCommandOptionCest.php22310664editdlrm
GroupEventsCept.php4100664editdlrm
GroupExtensionCept.php5440664editdlrm
IncludedCest.php53540664editdlrm
MixedIncludeCest.php6480664editdlrm
OrderCest.php41300664editdlrm
RegisterCommandCest.php11450664editdlrm
RunCest.php214850755editdlrm
RunEnvironmentCest.php52840664editdlrm
RunIncompleteCept.php2990664editdlrm
RunSingleTestWithIncludeCest.php4180664editdlrm
RunSkippedCept.php3250664editdlrm
SecondTestIsExecutedWhenTheFirstTestFailsCest.php11590664editdlrm
SnapshotCest.php32080664editdlrm
UnitCept.php9410664editdlrm
WildcardIncludeCest.php9270664editdlrm
_bootstrap.php960664editdlrm
Edit: /var/www/vhosts/nabawater/vendor/codeception/base/tests/cli/GherkinCest.php (3078B)
amInPath('tests/data/sandbox'); } public function steps(CliGuy $I) { $I->executeCommand('gherkin:steps scenario'); $I->seeInShellOutput('I have terminal opened'); $I->seeInShellOutput('ScenarioGuy::terminal'); $I->seeInShellOutput('there is a file :name'); $I->seeInShellOutput('I see file :name'); $I->seeInShellOutput('ScenarioGuy::matchFile'); } public function snippets(CliGuy $I) { $I->executeCommand('gherkin:snippets scenario'); $I->seeInShellOutput('@Given I have only idea of what\'s going on here'); $I->seeInShellOutput('public function iHaveOnlyIdeaOfWhatsGoingOnHere'); } public function snippetsScenarioFile(CliGuy $I) { $I->executeCommand('gherkin:snippets scenario FileExamples.feature'); $I->dontSeeInShellOutput('@Given I have only idea of what\'s going on here'); $I->dontSeeInShellOutput('public function iHaveOnlyIdeaOfWhatsGoingOnHere'); } public function snippetsScenarioFolder(CliGuy $I) { $I->executeCommand('gherkin:snippets scenario subfolder'); $I->seeInShellOutput('Given I have a feature in a subfolder'); $I->seeInShellOutput('public function iHaveAFeatureInASubfolder'); $I->dontSeeInShellOutput('@Given I have only idea of what\'s going on here'); $I->dontSeeInShellOutput('public function iHaveOnlyIdeaOfWhatsGoingOnHere'); } public function snippetsPyStringArgument(CliGuy $I) { $I->executeCommand('gherkin:snippets scenario PyStringArgumentExample.feature'); $I->seeInShellOutput('@Given I have PyString argument :arg1'); $I->seeInShellOutput('public function iHavePyStringArgument($arg1)'); $I->dontSeeInShellOutput('public function iSeeOutput($arg1)'); } public function runIncompletedStepWithPyStringArgument(CliGuy $I) { $I->executeCommand('run scenario "PyStringArgumentExample.feature:PyString argument" --steps'); $I->seeInShellOutput('Step definition for `I have PyString argument ""` not found in contexts'); $I->dontSeeInShellOutput('Step definition for `I see output` not found in contexts'); } public function runSameStepWithInlineAndPyStringArgument(CliGuy $I) { $I->executeCommand('run scenario "InlineArgumentExample.feature:Running step with inline argument" --steps'); $I->seeInShellOutput("Argument: test"); $I->executeCommand('run scenario "PyStringArgumentExample.feature:Running step with PyString argument" --steps'); $I->seeInShellOutput("Argument: First line\nSecond line"); } public function snippetsScenarioUtf8(CliGuy $I) { $I->executeCommand('gherkin:snippets scenario Utf8Example.feature'); $I->seeInShellOutput('@Given я написал сценарий на языке :arg1'); $I->seeInShellOutput('public function step_62e20dc62($arg1)'); } }