/**
  * verify
  * - shipping price group is excluded when it should be
  */
 public function testBuildOrderItemsWithNoShippingPriceGroup()
 {
     $handler = $this->getModelMockBuilder('ebayenterprise_order/create_orderitem')->setMethods(['loadOrderItemOptions', 'prepareMerchandisePricing', 'prepareShippingPriceGroup'])->setConstructorArgs([['shipping_helper' => $this->shippingHelper]])->getMock();
     $handler->expects($this->any())->method('loadOrderItemOptions')->will($this->returnValue($this->optionValueCollectionStub));
     $handler->expects($this->any())->method('prepareMerchandisePricing')->will($this->returnSelf());
     $handler->expects($this->never())->method('prepareShippingPriceGroup')->will($this->returnSelf());
     // add fake color option value
     $this->optionValueCollectionStub->addItem(Mage::getModel('eav/entity_attribute_option', ['attribute_code' => 'color', 'option_id' => 15, 'value' => 'Black', 'default_value' => null]));
     $handler->buildOrderItem($this->payload, $this->itemStub, $this->orderStub, $this->addressStub, 1, false);
 }