Inheritance: extends PHPUnit_Framework_TestCase
Ejemplo n.º 1
0
 /**
  * @dataProvider mockProvider
  * @param Webhook $obj
  */
 public function testGet($obj, $mockApiContext)
 {
     $mockPayPalRestCall = $this->getMockBuilder('\\PayPal\\Transport\\PayPalRestCall')->disableOriginalConstructor()->getMock();
     $mockPayPalRestCall->expects($this->any())->method('execute')->will($this->returnValue(WebhookTest::getJson()));
     $result = $obj->get("webhookId", $mockApiContext, $mockPayPalRestCall);
     $this->assertNotNull($result);
 }
Ejemplo n.º 2
0
 /**
  * @depends testSerializationDeserialization
  * @param WebhookList $obj
  */
 public function testGetters($obj)
 {
     $this->assertEquals($obj->getWebhooks(), WebhookTest::getObject());
 }