コード例 #1
0
ファイル: OrderTest.php プロジェクト: gpupo/netshoes-sdk
 /**
  * @testdox Falha ao acessar ``getShipping()`` quando não houver nenhum objeto
  * @test
  * @expectedException Exception
  * @expectedExceptionMessage Shipping Missed!
  * @dataProvider dataProviderOrders
  */
 public function failShipping(Order $order)
 {
     $order->getShippings()->clear();
     $order->getInvoice();
 }