forked from dromara/carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setter_bench_test.go
executable file
·212 lines (180 loc) · 3.66 KB
/
setter_bench_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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
package carbon
import (
"testing"
"time"
)
func BenchmarkCarbon_SetWeekStartsAt(b *testing.B) {
for n := 0; n < b.N; n++ {
SetWeekStartsAt(Sunday)
}
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetWeekStartsAt(Sunday)
}
}
func BenchmarkCarbon_SetTimezone(b *testing.B) {
for n := 0; n < b.N; n++ {
SetTimezone(PRC)
}
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetTimezone(PRC)
}
}
func BenchmarkCarbon_SetLocation(b *testing.B) {
loc, _ := time.LoadLocation(PRC)
for n := 0; n < b.N; n++ {
SetLocation(loc)
}
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetLocation(loc)
}
}
func BenchmarkCarbon_SetLocale(b *testing.B) {
for n := 0; n < b.N; n++ {
SetLocale("en")
}
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetLocale("en")
}
}
func BenchmarkCarbon_SetDateTime(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetDateTime(2020, 8, 5, 0, 0, 0)
}
}
func BenchmarkCarbon_SetDateTimeMilli(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetDateTimeMilli(2020, 8, 5, 0, 0, 0, 0)
}
}
func BenchmarkCarbon_SetDateTimeMicro(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetDateTimeMicro(2020, 8, 5, 0, 0, 0, 0)
}
}
func BenchmarkCarbon_SetDateTimeNano(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetDateTimeNano(2020, 8, 5, 0, 0, 0, 0)
}
}
func BenchmarkCarbon_SetDate(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetDate(2020, 8, 5)
}
}
func BenchmarkCarbon_SetDateMilli(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetDateMilli(2020, 8, 5, 0)
}
}
func BenchmarkCarbon_SetDateMicro(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetDateMicro(2020, 8, 5, 0)
}
}
func BenchmarkCarbon_SetDateNano(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetDateNano(2020, 8, 5, 0)
}
}
func BenchmarkCarbon_SetTime(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetTime(13, 14, 15)
}
}
func BenchmarkCarbon_SetTimeMilli(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetTimeMilli(13, 14, 15, 0)
}
}
func BenchmarkCarbon_SetTimeMicro(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetTimeMicro(13, 14, 15, 0)
}
}
func BenchmarkCarbon_SetTimeNano(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetTimeNano(13, 14, 15, 0)
}
}
func BenchmarkCarbon_SetYear(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetYear(2020)
}
}
func BenchmarkCarbon_SetYearNoOverflow(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetYearNoOverflow(2020)
}
}
func BenchmarkCarbon_SetMonth(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetMonth(8)
}
}
func BenchmarkCarbon_SetMonthNoOverflow(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetMonthNoOverflow(8)
}
}
func BenchmarkCarbon_SetDay(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetDay(20)
}
}
func BenchmarkCarbon_SetHour(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetHour(20)
}
}
func BenchmarkCarbon_SetMinute(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetMinute(20)
}
}
func BenchmarkCarbon_SetSecond(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetSecond(20)
}
}
func BenchmarkCarbon_SetMillisecond(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetMillisecond(20)
}
}
func BenchmarkCarbon_SetMicrosecond(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetMicrosecond(20)
}
}
func BenchmarkCarbon_SetNanosecond(b *testing.B) {
c := NewCarbon()
for n := 0; n < b.N; n++ {
c.SetNanosecond(20)
}
}