Bitpay\Client\ClientTest::getMockInvoice PHP Method

getMockInvoice() private method

private getMockInvoice ( )
    private function getMockInvoice()
    {
        $invoice = $this->getMockBuilder('Bitpay\\InvoiceInterface')->setMethods(array('getPrice', 'getCurrency', 'getItem', 'getBuyer', 'getTransactionSpeed', 'getNotificationEmail', 'getNotificationUrl', 'getRedirectUrl', 'getPosData', 'getStatus', 'isFullNotifications', 'getId', 'getUrl', 'getBtcPrice', 'getInvoiceTime', 'getExpirationTime', 'getCurrentTime', 'getOrderId', 'getItemDesc', 'getItemCode', 'isPhysical', 'getBuyerName', 'getBuyerAddress1', 'getBuyerAddress2', 'getBuyerCity', 'getBuyerState', 'getBuyerZip', 'getBuyerCountry', 'getBuyerEmail', 'getBuyerPhone', 'getExceptionStatus', 'getBtcPaid', 'getRate', 'getToken', 'setId', 'setUrl', 'setStatus', 'setBtcPrice', 'setPrice', 'setInvoiceTime', 'setExpirationTime', 'setCurrentTime', 'setBtcPaid', 'setRate', 'setToken', 'setExceptionStatus'))->getMock();
        return $invoice;
    }