public function testSetCarrierCode()
 {
     $xml = new \XMLWriter();
     $xml->openMemory();
     $xml->setIndent(true);
     $f = new OrderFulfillment($xml);
     $this->setExpectedException('InvalidArgumentException');
     $f->setCarrierCode('Foo');
 }