Exemplo n.º 1
0
 /**
  * @Given /^(the customer) belongs to (group "([^"]+)")$/
  */
 public function theCustomerBelongsToGroup(CustomerInterface $customer, CustomerGroupInterface $customerGroup)
 {
     $customer->setGroup($customerGroup);
     $this->customerManager->flush();
 }