/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/OrderCest.php (4130B)
amInPath('tests/data/sandbox'); $I->executeCommand('run order LoadingOrderCept.php'); $I->expect('global bootstrap, initialization, beforeSuite, before, bootstrap(B), test(T), after, afterSuite'); $I->seeFileFound('order.txt', 'tests/_output'); $I->seeFileContentsEqual("BIB([ST])"); } public function checkForFails(CliGuy $I) { $I->amInPath('tests/data/sandbox'); $I->executeCommand('run order FailedCept.php --no-exit'); $I->seeFileFound('order.txt', 'tests/_output'); $I->expect('global bootstrap, initialization, beforeSuite, before, bootstrap, test, fail, after, afterSuite'); $I->seeFileContentsEqual("BIB([STF])"); } public function checkForCanCantFails(CliGuy $I) { $I->amInPath('tests/data/sandbox'); $I->executeCommand('run order CanCantFailCept.php --no-exit'); $I->seeFileFound('order.txt', 'tests/_output'); $I->expect( 'global bootstrap, initialization, beforeSuite, before, bootstrap, test,' . ' fail, fail, test, after, afterSuite' ); $I->seeFileContentsEqual("BIB([STFFT])"); } public function checkForCanCantFailsInCest(CliGuy $I) { $I->amInPath('tests/data/sandbox'); $I->executeCommand('run order CanCantFailCest.php --no-exit'); $I->seeFileFound('order.txt', 'tests/_output'); $I->expect( 'global bootstrap, initialization, beforeSuite, before, bootstrap, test,' . ' fail, fail, test, test, fail, fail, test, after, afterSuite' ); $I->seeFileContentsEqual("BIB([TFT][TFT])"); } public function checkSimpleFiles(CliGuy $I) { $I->amInPath('tests/data/sandbox'); $I->executeCommand('run order --no-exit --group simple'); $I->seeFileFound('order.txt', 'tests/_output'); $I->seeFileContentsEqual("BIBP({{{{[ST][STFFT][STF][ST]}}}})"); } public function checkCestOrder(CliGuy $I) { $I->amInPath('tests/data/sandbox'); $I->executeCommand('run tests/order/ReorderCest.php --no-exit'); $I->seeFileFound('order.txt', 'tests/_output'); $I->seeFileContentsEqual("BIB([0123456])"); } public function checkFailingCestOrder(CliGuy $I) { $I->amInPath('tests/data/sandbox'); $I->executeCommand('run tests/order/FailedCest.php --no-exit -vvv'); $I->seeFileFound('order.txt', 'tests/_output'); $I->seeFileContentsEqual("BIB([a%F])"); } public function checkCodeceptionTest(CliGuy $I) { $I->amInPath('tests/data/sandbox'); $I->executeCommand('run order CodeTest.php --no-exit'); $I->seeFileFound('order.txt', 'tests/_output'); $I->expect(' global bootstrap, initialization, beforeSuite, beforeClass, @beforeClass, bootstrap, before, @before test, after, @after, afterSuite, afterClass, @afterClass'); $I->seeFileContentsEqual("BIB({{[]}})"); } public function checkAfterBeforeClassInTests(CliGuy $I) { $I->amInPath('tests/data/sandbox'); $I->executeCommand('run order BeforeAfterClassTest.php'); $I->seeFileFound('order.txt', 'tests/_output'); $I->seeInThisFile('BIB({[1][2]})'); } public function checkAfterBeforeClassInTestWithDataProvider(CliGuy $I) { $I->amInPath('tests/data/sandbox'); $I->executeCommand('run order BeforeAfterClassWithDataProviderTest.php'); $I->seeFileFound('order.txt', 'tests/_output'); $I->seeInThisFile('BIB({[A][B][C]})'); } public function checkBootstrapIsLoadedBeforeTests(CliGuy $I) { $I->amInPath('tests/data/sandbox'); $I->executeCommand('run order ParsedLoadedTest.php'); $I->seeFileFound('order.txt', 'tests/_output'); $I->seeInThisFile('BIBP(T)'); } }