UnitTester.php 621 B

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