Bitpay\Client\ClientTest::getMockPayout PHP Method

getMockPayout() private method

private getMockPayout ( )
    private function getMockPayout()
    {
        $invoice = $this->getMockBuilder('Bitpay\\PayoutInterface')->setMethods(array('getId', 'setId', 'getAccountId', 'setAccountId', 'getAmount', 'getCurrency', 'setCurrency', 'getEffectiveDate', 'setEffectiveDate', 'getRate', 'setRate', 'getRequestDate', 'setRequestDate', 'getInstructions', 'addInstruction', 'updateInstruction', 'getStatus', 'setStatus', 'getToken', 'setToken', 'getResponseToken', 'setResponseToken', 'getPricingMethod', 'setPricingMethod', 'getReference', 'setReference', 'getNotificationEmail', 'setNotificationEmail', 'getNotificationUrl', 'setNotificationUrl'))->getMock();
        return $invoice;
    }