PATH:
home
/
letacommog
/
newrdv1
/
wp-content
/
plugins1
/
ag-custom-admin
/
tests
/
_support
/
_generated
<?php //[STAMP] 7dd2cdf035d42dcf0bc173bccdf36ccf namespace _generated; // This class was automatically generated by build task // You should not change it manually as it will be overwritten on next build // @codingStandardsIgnoreFile use Helper\Functional; use Codeception\Module\Filesystem; use Codeception\Module\Asserts; trait FunctionalTesterActions { /** * @return \Codeception\Scenario */ abstract protected function getScenario(); /** * [!] Method is generated. Documentation taken from corresponding module. * * Enters a directory In local filesystem. * Project root directory is used by default * * @param $path * @see \Codeception\Module\Filesystem::amInPath() */ public function amInPath($path) { return $this->getScenario()->runStep(new \Codeception\Step\Condition('amInPath', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Opens a file and stores it's content. * * Usage: * * ``` php * <?php * $I->openFile('composer.json'); * $I->seeInThisFile('codeception/codeception'); * ?> * ``` * * @param $filename * @see \Codeception\Module\Filesystem::openFile() */ public function openFile($filename) { return $this->getScenario()->runStep(new \Codeception\Step\Action('openFile', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Deletes a file * * ``` php * <?php * $I->deleteFile('composer.lock'); * ?> * ``` * * @param $filename * @see \Codeception\Module\Filesystem::deleteFile() */ public function deleteFile($filename) { return $this->getScenario()->runStep(new \Codeception\Step\Action('deleteFile', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Deletes directory with all subdirectories * * ``` php * <?php * $I->deleteDir('vendor'); * ?> * ``` * * @param $dirname * @see \Codeception\Module\Filesystem::deleteDir() */ public function deleteDir($dirname) { return $this->getScenario()->runStep(new \Codeception\Step\Action('deleteDir', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Copies directory with all contents * * ``` php * <?php * $I->copyDir('vendor','old_vendor'); * ?> * ``` * * @param $src * @param $dst * @see \Codeception\Module\Filesystem::copyDir() */ public function copyDir($src, $dst) { return $this->getScenario()->runStep(new \Codeception\Step\Action('copyDir', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks If opened file has `text` in it. * * Usage: * * ``` php * <?php * $I->openFile('composer.json'); * $I->seeInThisFile('codeception/codeception'); * ?> * ``` * * @param $text * Conditional Assertion: Test won't be stopped on fail * @see \Codeception\Module\Filesystem::seeInThisFile() */ public function canSeeInThisFile($text) { return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeInThisFile', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks If opened file has `text` in it. * * Usage: * * ``` php * <?php * $I->openFile('composer.json'); * $I->seeInThisFile('codeception/codeception'); * ?> * ``` * * @param $text * @see \Codeception\Module\Filesystem::seeInThisFile() */ public function seeInThisFile($text) { return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeInThisFile', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks If opened file has the `number` of new lines. * * Usage: * * ``` php * <?php * $I->openFile('composer.json'); * $I->seeNumberNewLines(5); * ?> * ``` * * @param int $number New lines * Conditional Assertion: Test won't be stopped on fail * @see \Codeception\Module\Filesystem::seeNumberNewLines() */ public function canSeeNumberNewLines($number) { return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeNumberNewLines', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks If opened file has the `number` of new lines. * * Usage: * * ``` php * <?php * $I->openFile('composer.json'); * $I->seeNumberNewLines(5); * ?> * ``` * * @param int $number New lines * @see \Codeception\Module\Filesystem::seeNumberNewLines() */ public function seeNumberNewLines($number) { return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeNumberNewLines', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that contents of currently opened file matches $regex * * @param $regex * Conditional Assertion: Test won't be stopped on fail * @see \Codeception\Module\Filesystem::seeThisFileMatches() */ public function canSeeThisFileMatches($regex) { return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeThisFileMatches', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that contents of currently opened file matches $regex * * @param $regex * @see \Codeception\Module\Filesystem::seeThisFileMatches() */ public function seeThisFileMatches($regex) { return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeThisFileMatches', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks the strict matching of file contents. * Unlike `seeInThisFile` will fail if file has something more than expected lines. * Better to use with HEREDOC strings. * Matching is done after removing "\r" chars from file content. * * ``` php * <?php * $I->openFile('process.pid'); * $I->seeFileContentsEqual('3192'); * ?> * ``` * * @param $text * Conditional Assertion: Test won't be stopped on fail * @see \Codeception\Module\Filesystem::seeFileContentsEqual() */ public function canSeeFileContentsEqual($text) { return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeFileContentsEqual', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks the strict matching of file contents. * Unlike `seeInThisFile` will fail if file has something more than expected lines. * Better to use with HEREDOC strings. * Matching is done after removing "\r" chars from file content. * * ``` php * <?php * $I->openFile('process.pid'); * $I->seeFileContentsEqual('3192'); * ?> * ``` * * @param $text * @see \Codeception\Module\Filesystem::seeFileContentsEqual() */ public function seeFileContentsEqual($text) { return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeFileContentsEqual', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks If opened file doesn't contain `text` in it * * ``` php * <?php * $I->openFile('composer.json'); * $I->dontSeeInThisFile('codeception/codeception'); * ?> * ``` * * @param $text * Conditional Assertion: Test won't be stopped on fail * @see \Codeception\Module\Filesystem::dontSeeInThisFile() */ public function cantSeeInThisFile($text) { return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeInThisFile', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks If opened file doesn't contain `text` in it * * ``` php * <?php * $I->openFile('composer.json'); * $I->dontSeeInThisFile('codeception/codeception'); * ?> * ``` * * @param $text * @see \Codeception\Module\Filesystem::dontSeeInThisFile() */ public function dontSeeInThisFile($text) { return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeInThisFile', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Deletes a file * @see \Codeception\Module\Filesystem::deleteThisFile() */ public function deleteThisFile() { return $this->getScenario()->runStep(new \Codeception\Step\Action('deleteThisFile', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks if file exists in path. * Opens a file when it's exists * * ``` php * <?php * $I->seeFileFound('UserModel.php','app/models'); * ?> * ``` * * @param $filename * @param string $path * Conditional Assertion: Test won't be stopped on fail * @see \Codeception\Module\Filesystem::seeFileFound() */ public function canSeeFileFound($filename, $path = null) { return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('seeFileFound', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks if file exists in path. * Opens a file when it's exists * * ``` php * <?php * $I->seeFileFound('UserModel.php','app/models'); * ?> * ``` * * @param $filename * @param string $path * @see \Codeception\Module\Filesystem::seeFileFound() */ public function seeFileFound($filename, $path = null) { return $this->getScenario()->runStep(new \Codeception\Step\Assertion('seeFileFound', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks if file does not exist in path * * @param $filename * @param string $path * Conditional Assertion: Test won't be stopped on fail * @see \Codeception\Module\Filesystem::dontSeeFileFound() */ public function cantSeeFileFound($filename, $path = null) { return $this->getScenario()->runStep(new \Codeception\Step\ConditionalAssertion('dontSeeFileFound', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks if file does not exist in path * * @param $filename * @param string $path * @see \Codeception\Module\Filesystem::dontSeeFileFound() */ public function dontSeeFileFound($filename, $path = null) { return $this->getScenario()->runStep(new \Codeception\Step\Assertion('dontSeeFileFound', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Erases directory contents * * ``` php * <?php * $I->cleanDir('logs'); * ?> * ``` * * @param $dirname * @see \Codeception\Module\Filesystem::cleanDir() */ public function cleanDir($dirname) { return $this->getScenario()->runStep(new \Codeception\Step\Action('cleanDir', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Saves contents to file * * @param $filename * @param $contents * @see \Codeception\Module\Filesystem::writeToFile() */ public function writeToFile($filename, $contents) { return $this->getScenario()->runStep(new \Codeception\Step\Action('writeToFile', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that two variables are equal. * * @param $expected * @param $actual * @param string $message * @see \Codeception\Module\Asserts::assertEquals() */ public function assertEquals($expected, $actual, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertEquals', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that two variables are not equal * * @param $expected * @param $actual * @param string $message * @see \Codeception\Module\Asserts::assertNotEquals() */ public function assertNotEquals($expected, $actual, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotEquals', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that two variables are same * * @param $expected * @param $actual * @param string $message * @return mixed|void * @see \Codeception\Module\Asserts::assertSame() */ public function assertSame($expected, $actual, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertSame', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that two variables are not same * * @param $expected * @param $actual * @param string $message * @see \Codeception\Module\Asserts::assertNotSame() */ public function assertNotSame($expected, $actual, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotSame', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that actual is greater than expected * * @param $expected * @param $actual * @param string $message * @see \Codeception\Module\Asserts::assertGreaterThan() */ public function assertGreaterThan($expected, $actual, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertGreaterThan', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that actual is greater or equal than expected * * @param $expected * @param $actual * @param string $message * @see \Codeception\Module\Asserts::assertGreaterThanOrEqual() */ public function assertGreaterThanOrEqual($expected, $actual, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertGreaterThanOrEqual', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that actual is less than expected * * @param $expected * @param $actual * @param string $message * @see \Codeception\Module\Asserts::assertLessThan() */ public function assertLessThan($expected, $actual, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertLessThan', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that actual is less or equal than expected * * @param $expected * @param $actual * @param string $message * @see \Codeception\Module\Asserts::assertLessThanOrEqual() */ public function assertLessThanOrEqual($expected, $actual, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertLessThanOrEqual', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that haystack contains needle * * @param $needle * @param $haystack * @param string $message * @see \Codeception\Module\Asserts::assertContains() */ public function assertContains($needle, $haystack, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertContains', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that haystack doesn't contain needle. * * @param $needle * @param $haystack * @param string $message * @see \Codeception\Module\Asserts::assertNotContains() */ public function assertNotContains($needle, $haystack, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotContains', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that string match with pattern * * @param string $pattern * @param string $string * @param string $message * @see \Codeception\Module\Asserts::assertRegExp() */ public function assertRegExp($pattern, $string, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertRegExp', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that string not match with pattern * * @param string $pattern * @param string $string * @param string $message * @see \Codeception\Module\Asserts::assertNotRegExp() */ public function assertNotRegExp($pattern, $string, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotRegExp', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that variable is empty. * * @param $actual * @param string $message * @see \Codeception\Module\Asserts::assertEmpty() */ public function assertEmpty($actual, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertEmpty', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that variable is not empty. * * @param $actual * @param string $message * @see \Codeception\Module\Asserts::assertNotEmpty() */ public function assertNotEmpty($actual, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotEmpty', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that variable is NULL * * @param $actual * @param string $message * @see \Codeception\Module\Asserts::assertNull() */ public function assertNull($actual, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNull', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that variable is not NULL * * @param $actual * @param string $message * @see \Codeception\Module\Asserts::assertNotNull() */ public function assertNotNull($actual, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotNull', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that condition is positive. * * @param $condition * @param string $message * @see \Codeception\Module\Asserts::assertTrue() */ public function assertTrue($condition, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertTrue', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks that condition is negative. * * @param $condition * @param string $message * @see \Codeception\Module\Asserts::assertFalse() */ public function assertFalse($condition, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFalse', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks if file exists * * @param string $filename * @param string $message * @see \Codeception\Module\Asserts::assertFileExists() */ public function assertFileExists($filename, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileExists', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Checks if file doesn't exist * * @param string $filename * @param string $message * @see \Codeception\Module\Asserts::assertFileNotExists() */ public function assertFileNotExists($filename, $message = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertFileNotExists', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * @param $expected * @param $actual * @param $description * @see \Codeception\Module\Asserts::assertGreaterOrEquals() */ public function assertGreaterOrEquals($expected, $actual, $description = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertGreaterOrEquals', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * @param $expected * @param $actual * @param $description * @see \Codeception\Module\Asserts::assertLessOrEquals() */ public function assertLessOrEquals($expected, $actual, $description = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertLessOrEquals', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * @param $actual * @param $description * @see \Codeception\Module\Asserts::assertIsEmpty() */ public function assertIsEmpty($actual, $description = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertIsEmpty', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * @param $key * @param $actual * @param $description * @see \Codeception\Module\Asserts::assertArrayHasKey() */ public function assertArrayHasKey($key, $actual, $description = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertArrayHasKey', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * @param $key * @param $actual * @param $description * @see \Codeception\Module\Asserts::assertArrayNotHasKey() */ public function assertArrayNotHasKey($key, $actual, $description = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertArrayNotHasKey', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * @param $class * @param $actual * @param $description * @see \Codeception\Module\Asserts::assertInstanceOf() */ public function assertInstanceOf($class, $actual, $description = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertInstanceOf', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * @param $class * @param $actual * @param $description * @see \Codeception\Module\Asserts::assertNotInstanceOf() */ public function assertNotInstanceOf($class, $actual, $description = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotInstanceOf', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * @param $type * @param $actual * @param $description * @see \Codeception\Module\Asserts::assertInternalType() */ public function assertInternalType($type, $actual, $description = null) { return $this->getScenario()->runStep(new \Codeception\Step\Action('assertInternalType', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Fails the test with message. * * @param $message * @see \Codeception\Module\Asserts::fail() */ public function fail($message) { return $this->getScenario()->runStep(new \Codeception\Step\Action('fail', func_get_args())); } /** * [!] Method is generated. Documentation taken from corresponding module. * * Handles and checks exception called inside callback function. * Either exception class name or exception instance should be provided. * * ```php * <?php * $I->expectException(MyException::class, function() { * $this->doSomethingBad(); * }); * * $I->expectException(new MyException(), function() { * $this->doSomethingBad(); * }); * ``` * If you want to check message or exception code, you can pass them with exception instance: * ```php * <?php * // will check that exception MyException is thrown with "Don't do bad things" message * $I->expectException(new MyException("Don't do bad things"), function() { * $this->doSomethingBad(); * }); * ``` * * @param $exception string or \Exception * @param $callback * @see \Codeception\Module\Asserts::expectException() */ public function expectException($exception, $callback) { return $this->getScenario()->runStep(new \Codeception\Step\Action('expectException', func_get_args())); } }
[+]
..
[-] AcceptanceTesterActions.php
[edit]
[-] UnitTesterActions.php
[edit]
[-] ._generated.php
[edit]
[-] FunctionalTesterActions.php
[edit]