-
-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(acceptance) add AJAX page ops coverage
- Loading branch information
Showing
4 changed files
with
878 additions
and
669 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
<?php | ||
|
||
use PHPUnit\Framework\Assert; | ||
|
||
|
||
/** | ||
* Inherited Methods | ||
* @method void wantToTest($text) | ||
* @method void wantTo($text) | ||
* @method void execute($callable) | ||
* @method void expectTo($prediction) | ||
* @method void expect($prediction) | ||
* @method void amGoingTo($argumentation) | ||
* @method void am($role) | ||
* @method void lookForwardTo($achieveValue) | ||
* @method void comment($description) | ||
* @method \Codeception\Lib\Friend haveFriend($name, $actorClass = null) | ||
* @method void wantToTest( $text ) | ||
* @method void wantTo( $text ) | ||
* @method void execute( $callable ) | ||
* @method void expectTo( $prediction ) | ||
* @method void expect( $prediction ) | ||
* @method void amGoingTo( $argumentation ) | ||
* @method void am( $role ) | ||
* @method void lookForwardTo( $achieveValue ) | ||
* @method void comment( $description ) | ||
* @method \Codeception\Lib\Friend haveFriend( $name, $actorClass = null ) | ||
* | ||
* @SuppressWarnings(PHPMD) | ||
*/ | ||
class AcceptanceTester extends \Codeception\Actor | ||
{ | ||
use _generated\AcceptanceTesterActions; | ||
class AcceptanceTester extends \Codeception\Actor { | ||
use _generated\AcceptanceTesterActions; | ||
|
||
/** | ||
* Define custom actions here | ||
*/ | ||
/** | ||
* Define custom actions here | ||
*/ | ||
} |
Oops, something went wrong.