AcceptanceTester.php 610 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Inherited Methods
  4. * @method void wantToTest($text)
  5. * @method void wantTo($text)
  6. * @method void execute($callable)
  7. * @method void expectTo($prediction)
  8. * @method void expect($prediction)
  9. * @method void amGoingTo($argumentation)
  10. * @method void am($role)
  11. * @method void lookForwardTo($achieveValue)
  12. * @method void comment($description)
  13. * @method \Codeception\Lib\Friend haveFriend($name, $actorClass = NULL)
  14. *
  15. * @SuppressWarnings(PHPMD)
  16. */
  17. class AcceptanceTester extends \Codeception\Actor
  18. {
  19. use _generated\AcceptanceTesterActions;
  20. /**
  21. * Define custom actions here
  22. */
  23. }