예제 #1
0
파일: NvpTest.php 프로젝트: nja78/magento2
 public function testCallGetExpressCheckoutDetails()
 {
     $this->curl->expects($this->once())->method('read')->will($this->returnValue("\r\n" . 'ACK=Success&SHIPTONAME=Ship%20To%20Name'));
     $this->model->callGetExpressCheckoutDetails();
     $this->assertEquals('Ship To Name', $this->model->getExportedShippingAddress()->getData('firstname'));
 }