-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgeographyRequestBuilder_test.go
157 lines (143 loc) · 2.78 KB
/
geographyRequestBuilder_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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
package dpd
import (
"reflect"
"testing"
)
func TestNewParcelShopRequest(t *testing.T) {
tests := []struct {
name string
want *ParcelShopRequest
}{
{
"New parcel shop",
&ParcelShopRequest{},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := NewParcelShopRequest(); !reflect.DeepEqual(got, tt.want) {
t.Errorf("NewParcelShopRequest() = %v, want %v", got, tt.want)
}
})
}
}
func TestParcelShopRequest_SetCountryCode(t *testing.T) {
type args struct {
code string
}
countryCode := "RU"
tests := []struct {
name string
r *ParcelShopRequest
args args
want *ParcelShopRequest
}{
{
"Set country code",
&ParcelShopRequest{},
args{
countryCode,
},
&ParcelShopRequest{
CountryCode: &countryCode,
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.r.SetCountryCode(tt.args.code); !reflect.DeepEqual(got, tt.want) {
t.Errorf("ParcelShopRequest.SetCountryCode() = %v, want %v", got, tt.want)
}
})
}
}
func TestParcelShopRequest_SetRegionCode(t *testing.T) {
type args struct {
code string
}
code := "234324"
tests := []struct {
name string
r *ParcelShopRequest
args args
want *ParcelShopRequest
}{
{
"Set region code",
&ParcelShopRequest{},
args{
code,
},
&ParcelShopRequest{
RegionCode: &code,
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.r.SetRegionCode(tt.args.code); !reflect.DeepEqual(got, tt.want) {
t.Errorf("ParcelShopRequest.SetRegionCode() = %v, want %v", got, tt.want)
}
})
}
}
func TestParcelShopRequest_SetCityCode(t *testing.T) {
type args struct {
code string
}
cityCode := "123ffew!"
tests := []struct {
name string
r *ParcelShopRequest
args args
want *ParcelShopRequest
}{
{
"Set city code",
&ParcelShopRequest{},
args{
cityCode,
},
&ParcelShopRequest{
CityCode: &cityCode,
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.r.SetCityCode(tt.args.code); !reflect.DeepEqual(got, tt.want) {
t.Errorf("ParcelShopRequest.SetCityCode() = %v, want %v", got, tt.want)
}
})
}
}
func TestParcelShopRequest_SetCityName(t *testing.T) {
type args struct {
name string
}
cityName := "City name"
tests := []struct {
name string
r *ParcelShopRequest
args args
want *ParcelShopRequest
}{
{
"Set city name",
&ParcelShopRequest{},
args{
cityName,
},
&ParcelShopRequest{
CityName: &cityName,
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.r.SetCityName(tt.args.name); !reflect.DeepEqual(got, tt.want) {
t.Errorf("ParcelShopRequest.SetCityName() = %v, want %v", got, tt.want)
}
})
}
}