示例#1
0
 /**
  * @dataProvider mockProvider
  * @param BankAccount $obj
  */
 public function testDelete($obj, $mockApiContext)
 {
     $mockPayPalRestCall = $this->getMockBuilder('\\PayPal\\Transport\\PayPalRestCall')->disableOriginalConstructor()->getMock();
     $mockPayPalRestCall->expects($this->any())->method('execute')->will($this->returnValue(true));
     $result = $obj->delete($mockApiContext, $mockPayPalRestCall);
     $this->assertNotNull($result);
 }