コード例 #1
0
ファイル: OrderTest.php プロジェクト: alex63530/thelia
 public function testSetinvoiceAddress()
 {
     $this->orderEvent->setInvoiceAddress(654);
     $this->orderAction->setInvoiceAddress($this->orderEvent);
     $this->assertEquals(654, $this->orderEvent->getOrder()->getChoosenInvoiceAddress());
 }