예제 #1
0
 /**
  * @param AttributeGroupInterface $group
  */
 protected function initializeGroup(AttributeGroupInterface $group)
 {
     $this->view[$group->getId()] = ['label' => $group->getLabel(), 'attributes' => []];
 }
 /**
  * @param AttributeGroupInterface $group
  *
  * @Given /^I should be on the ("([^"]*)" attribute group) page$/
  */
 public function iShouldBeOnTheAttributeGroupPage(AttributeGroupInterface $group)
 {
     $expectedAddress = $this->getPage('AttributeGroup edit')->getUrl(['id' => $group->getId()]);
     $this->assertAddress($expectedAddress);
 }