forked from nikoksr/notify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mock_twilio_client.go
53 lines (41 loc) · 1.43 KB
/
mock_twilio_client.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Code generated by mockery v2.14.0. DO NOT EDIT.
package twilio
import (
url "net/url"
twilio_go "github.com/kevinburke/twilio-go"
mock "github.com/stretchr/testify/mock"
)
// mockTwilioClient is an autogenerated mock type for the twilioClient type
type mockTwilioClient struct {
mock.Mock
}
// SendMessage provides a mock function with given fields: from, to, body, mediaURLs
func (_m *mockTwilioClient) SendMessage(from string, to string, body string, mediaURLs []*url.URL) (*twilio_go.Message, error) {
ret := _m.Called(from, to, body, mediaURLs)
var r0 *twilio_go.Message
if rf, ok := ret.Get(0).(func(string, string, string, []*url.URL) *twilio_go.Message); ok {
r0 = rf(from, to, body, mediaURLs)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*twilio_go.Message)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(string, string, string, []*url.URL) error); ok {
r1 = rf(from, to, body, mediaURLs)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
type mockConstructorTestingTnewMockTwilioClient interface {
mock.TestingT
Cleanup(func())
}
// newMockTwilioClient creates a new instance of mockTwilioClient. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func newMockTwilioClient(t mockConstructorTestingTnewMockTwilioClient) *mockTwilioClient {
mock := &mockTwilioClient{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}