-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathNotificationRepo.go
93 lines (74 loc) · 2.49 KB
/
NotificationRepo.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
// Code generated by mockery v2.43.0. DO NOT EDIT.
package mocks
import (
context "context"
mock "github.com/stretchr/testify/mock"
)
// NotificationRepo is an autogenerated mock type for the Repo type
type NotificationRepo struct {
mock.Mock
}
type NotificationRepo_Expecter struct {
mock *mock.Mock
}
func (_m *NotificationRepo) EXPECT() *NotificationRepo_Expecter {
return &NotificationRepo_Expecter{mock: &_m.Mock}
}
// Count provides a mock function with given fields: ctx, userID
func (_m *NotificationRepo) Count(ctx context.Context, userID uint32) (int64, error) {
ret := _m.Called(ctx, userID)
if len(ret) == 0 {
panic("no return value specified for Count")
}
var r0 int64
var r1 error
if rf, ok := ret.Get(0).(func(context.Context, uint32) (int64, error)); ok {
return rf(ctx, userID)
}
if rf, ok := ret.Get(0).(func(context.Context, uint32) int64); ok {
r0 = rf(ctx, userID)
} else {
r0 = ret.Get(0).(int64)
}
if rf, ok := ret.Get(1).(func(context.Context, uint32) error); ok {
r1 = rf(ctx, userID)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
// NotificationRepo_Count_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Count'
type NotificationRepo_Count_Call struct {
*mock.Call
}
// Count is a helper method to define mock.On call
// - ctx context.Context
// - userID uint32
func (_e *NotificationRepo_Expecter) Count(ctx interface{}, userID interface{}) *NotificationRepo_Count_Call {
return &NotificationRepo_Count_Call{Call: _e.mock.On("Count", ctx, userID)}
}
func (_c *NotificationRepo_Count_Call) Run(run func(ctx context.Context, userID uint32)) *NotificationRepo_Count_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(context.Context), args[1].(uint32))
})
return _c
}
func (_c *NotificationRepo_Count_Call) Return(_a0 int64, _a1 error) *NotificationRepo_Count_Call {
_c.Call.Return(_a0, _a1)
return _c
}
func (_c *NotificationRepo_Count_Call) RunAndReturn(run func(context.Context, uint32) (int64, error)) *NotificationRepo_Count_Call {
_c.Call.Return(run)
return _c
}
// NewNotificationRepo creates a new instance of NotificationRepo. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
// The first argument is typically a *testing.T value.
func NewNotificationRepo(t interface {
mock.TestingT
Cleanup(func())
}) *NotificationRepo {
mock := &NotificationRepo{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}