UnitTester.php 645 B

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