-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmock_test.go
86 lines (69 loc) · 1.24 KB
/
mock_test.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
package buzz
import "time"
type TestStruct struct {
String string
}
type User struct {
Id int
Name string
Email string
}
type Id struct {
Id int
}
type Id2 struct {
Id2 int
}
type UserExtended struct {
Id int
Name string
Email string
String string
}
type UserWithAddress struct {
Id int
Name string
Address Address
}
type Address struct {
ZipCode int
Text string
}
type UserWithUnexportedFields struct {
Id int
name string
}
type StructWithSlice struct {
Id int
List []string
List2 []int
}
type StructWithPointer struct {
Id int
Name *string
}
type ComplexStruct struct {
Id int
Email string
Spouse *User
Int64 int64
Comments []string
Friends []User
FriendsWithPtrUsers []*User
TheInterface MyInterface
CrucialError error
KeyValue map[string]int
Admin bool
CreatedAt time.Time
UpdatedAt *time.Time
LastErrorMsg *string
}
type MyError struct{}
func (e *MyError) Error() string {
return "error brother"
}
type MyInterface interface {
Method() int
}
type MyInterfaceStruct struct{}
func (s *MyInterfaceStruct) Method() int { return 5 }