FunctionalTesterActions.php 931 B

1234567891011121314151617181920212223242526272829303132
  1. <?php //[STAMP] 24bbbd57a8bac0314650055fb221ca8a
  2. namespace _generated;
  3. // This class was automatically generated by build task
  4. // You should not change it manually as it will be overwritten on next build
  5. // @codingStandardsIgnoreFile
  6. use Helper\Functional;
  7. trait FunctionalTesterActions
  8. {
  9. /**
  10. * @return \Codeception\Scenario
  11. */
  12. abstract protected function getScenario();
  13. /**
  14. * [!] Method is generated. Documentation taken from corresponding module.
  15. *
  16. * Checks that array contains subset.
  17. *
  18. * @param array $subset
  19. * @param array $array
  20. * @param bool $strict
  21. * @param string $message
  22. * @see \Codeception\Module::assertArraySubset()
  23. */
  24. public function assertArraySubset($subset, $array, $strict = null, $message = null) {
  25. return $this->getScenario()->runStep(new \Codeception\Step\Action('assertArraySubset', func_get_args()));
  26. }
  27. }