Inheritance: extends PHPUnit_Framework_TestCase
 /**
  * @dataProvider mockProvider
  * @param Capture $obj
  */
 public function testGet($obj, $mockApiContext)
 {
     $mockPPRestCall = $this->getMockBuilder('\\PayPal\\Transport\\PayPalRestCall')->disableOriginalConstructor()->getMock();
     $mockPPRestCall->expects($this->any())->method('execute')->will($this->returnValue(CaptureTest::getJson()));
     $result = $obj->get("captureId", $mockApiContext, $mockPPRestCall);
     $this->assertNotNull($result);
 }
 public static function createSubTransaction()
 {
     $subTransaction = new SubTransaction();
     $subTransaction->setAuthorization(AuthorizationTest::createAuthorization());
     $subTransaction->setCapture(CaptureTest::createCapture());
     return $subTransaction;
 }
 public static function createRelatedResources()
 {
     $relatedResources = new RelatedResources();
     $relatedResources->setAuthorization(AuthorizationTest::createAuthorization());
     $relatedResources->setCapture(CaptureTest::createCapture());
     return $relatedResources;
 }
 /**
  * @depends testSerializationDeserialization
  * @param RelatedResources $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getSale(), SaleTest::getObject());
     $this->assertEquals($obj->getAuthorization(), AuthorizationTest::getObject());
     $this->assertEquals($obj->getOrder(), OrderTest::getObject());
     $this->assertEquals($obj->getCapture(), CaptureTest::getObject());
     $this->assertEquals($obj->getRefund(), RefundTest::getObject());
 }