Ejemplo n.º 1
0
 /**
  * @dataProvider mockProvider
  * @param WebHook $obj
  */
 public function testDelete($obj, $mockApiContext)
 {
     $mockBlockCypherRestCall = $this->getMockBuilder('\\BlockCypher\\Transport\\BlockCypherRestCall')->disableOriginalConstructor()->getMock();
     $mockBlockCypherRestCall->expects($this->any())->method('execute')->will($this->returnValue(true));
     $result = $obj->delete($mockApiContext, $mockBlockCypherRestCall);
     $this->assertNotNull($result);
 }