for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php //[STAMP] d2a298893573661fdbd787dcfa27a7b0
namespace _generated;
// This class was automatically generated by build task
// You should not change it manually as it will be overwritten on next build
// @codingStandardsIgnoreFile
use Helper\Functional;
trait FunctionalTesterActions
{
/**
* @return \Codeception\Scenario
*/
abstract protected function getScenario();
* [!] Method is generated. Documentation taken from corresponding module.
*
* Checks that array contains subset.
* @param array $subset
* @param array $array
* @param bool $strict
* @param string $message
* @see \Codeception\Module::assertArraySubset()
public function assertArraySubset($subset, $array, $strict = null, $message = null) {
$subset
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.
$array
$strict
$message
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertArraySubset', func_get_args()));
}
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.