CliGuy.php 668 B

12345678910111213141516171819202122232425262728293031
  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 void haveFriend($name, $actorClass = null)
  14. *
  15. * @SuppressWarnings(PHPMD)
  16. */
  17. class CliGuy extends \Codeception\Actor
  18. {
  19. use _generated\CliGuyActions;
  20. /**
  21. * @param $file
  22. */
  23. public function seeInSupportDir($file)
  24. {
  25. $this->seeFileFound($file, 'tests/support');
  26. }
  27. }