Example #1
0
 /**
  * @Then the field :fieldName at index :index in resource field :resourceName should contain :value
  */
 public function theFieldAtIndexInResourceFieldShouldContain($fieldName, $resourceName, $value, $index)
 {
     Assert::assertEquals($value, $this->response->getResource($resourceName)[$index]->{$fieldName}->getValue());
 }