Skip to content

Commit

Permalink
test(acceptance) add AJAX page ops coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
lucatume committed Sep 21, 2023
1 parent 95a189f commit 7a33f82
Show file tree
Hide file tree
Showing 4 changed files with 878 additions and 669 deletions.
2 changes: 2 additions & 0 deletions tests/_support/AcceptanceHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
// here you can define custom actions
// all public methods declared in helper class will be available in $I

use PHPUnit\Framework\Assert;

class AcceptanceHelper extends \Codeception\Module
{

Expand Down
33 changes: 17 additions & 16 deletions tests/_support/AcceptanceTester.php
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
*/
}
Loading

0 comments on commit 7a33f82

Please sign in to comment.