/**
  * Create Gift Wrapping entity test.
  *
  * @param GiftWrapping $giftWrapping
  * @return void
  */
 public function test(GiftWrapping $giftWrapping)
 {
     // Steps
     $this->giftWrappingIndexPage->open();
     $this->giftWrappingIndexPage->getGridPageActions()->addNew();
     $this->giftWrappingNewPage->getGiftWrappingForm()->fill($giftWrapping);
     $this->giftWrappingNewPage->getFormPageActions()->save();
 }