forked from dromara/carbon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
traveler_bench_test.go
executable file
·539 lines (461 loc) · 9.01 KB
/
traveler_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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
package carbon
import "testing"
func BenchmarkCarbon_Now(b *testing.B) {
for n := 0; n < b.N; n++ {
Now()
}
}
func BenchmarkCarbon_Yesterday(b *testing.B) {
for n := 0; n < b.N; n++ {
Yesterday()
}
}
func BenchmarkCarbon_Tomorrow(b *testing.B) {
for n := 0; n < b.N; n++ {
Tomorrow()
}
}
func BenchmarkCarbon_AddDuration(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddDuration("1s")
}
}
func BenchmarkCarbon_SubDuration(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubDuration("1s")
}
}
func BenchmarkCarbon_AddCenturies(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddCenturies(1)
}
}
func BenchmarkCarbon_AddCenturiesNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddCenturiesNoOverflow(1)
}
}
func BenchmarkCarbon_AddCentury(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddCentury()
}
}
func BenchmarkCarbon_AddCenturyNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddCenturyNoOverflow()
}
}
func BenchmarkCarbon_SubCenturies(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubCenturies(1)
}
}
func BenchmarkCarbon_SubCenturiesNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubCenturiesNoOverflow(1)
}
}
func BenchmarkCarbon_SubCentury(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubCentury()
}
}
func BenchmarkCarbon_SubCenturyNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubCenturyNoOverflow()
}
}
func BenchmarkCarbon_AddDecades(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddDecades(1)
}
}
func BenchmarkCarbon_AddDecadesNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddDecadesNoOverflow(1)
}
}
func BenchmarkCarbon_AddDecade(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddDecade()
}
}
func BenchmarkCarbon_AddDecadeNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddDecadeNoOverflow()
}
}
func BenchmarkCarbon_SubDecades(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubDecades(1)
}
}
func BenchmarkCarbon_SubDecadesNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubDecadesNoOverflow(1)
}
}
func BenchmarkCarbon_SubDecade(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubDecade()
}
}
func BenchmarkCarbon_SubDecadeNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubDecadeNoOverflow()
}
}
func BenchmarkCarbon_AddYears(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddYears(1)
}
}
func BenchmarkCarbon_AddYearsNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddYearsNoOverflow(1)
}
}
func BenchmarkCarbon_AddYear(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddYear()
}
}
func BenchmarkCarbon_AddYearNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddYearNoOverflow()
}
}
func BenchmarkCarbon_SubYears(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubYears(1)
}
}
func BenchmarkCarbon_SubYearsNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubYearsNoOverflow(1)
}
}
func BenchmarkCarbon_SubYear(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubYear()
}
}
func BenchmarkCarbon_SubYearNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubYearNoOverflow()
}
}
func BenchmarkCarbon_AddQuarters(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddQuarters(1)
}
}
func BenchmarkCarbon_AddQuartersNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddQuartersNoOverflow(1)
}
}
func BenchmarkCarbon_AddQuarter(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddQuarter()
}
}
func BenchmarkCarbon_AddQuarterNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddQuarter()
}
}
func BenchmarkCarbon_SubQuarters(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubQuarters(1)
}
}
func BenchmarkCarbon_SubQuartersNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubQuartersNoOverflow(1)
}
}
func BenchmarkCarbon_SubQuarter(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubQuarter()
}
}
func BenchmarkCarbon_SubQuarterNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubQuarterNoOverflow()
}
}
func BenchmarkCarbon_AddMonths(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddMonths(1)
}
}
func BenchmarkCarbon_AddMonthsNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddMonthsNoOverflow(1)
}
}
func BenchmarkCarbon_AddMonth(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddMonth()
}
}
func BenchmarkCarbon_AddMonthNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddMonthNoOverflow()
}
}
func BenchmarkCarbon_SubMonths(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubMonths(1)
}
}
func BenchmarkCarbon_SubMonthsNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubMonthsNoOverflow(1)
}
}
func BenchmarkCarbon_SubMonth(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubMonth()
}
}
func BenchmarkCarbon_SubMonthNoOverflow(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubMonthNoOverflow()
}
}
func BenchmarkCarbon_AddWeeks(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddWeeks(1)
}
}
func BenchmarkCarbon_AddWeek(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddWeek()
}
}
func BenchmarkCarbon_SubWeeks(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubWeeks(1)
}
}
func BenchmarkCarbon_SubWeek(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubWeek()
}
}
func BenchmarkCarbon_AddDays(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddDays(1)
}
}
func BenchmarkCarbon_AddDay(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddDay()
}
}
func BenchmarkCarbon_SubDays(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubDays(1)
}
}
func BenchmarkCarbon_SubDay(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubDay()
}
}
func BenchmarkCarbon_AddHours(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddHours(1)
}
}
func BenchmarkCarbon_AddHour(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddHour()
}
}
func BenchmarkCarbon_SubHours(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubHours(1)
}
}
func BenchmarkCarbon_SubHour(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubHour()
}
}
func BenchmarkCarbon_AddMinutes(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddMinutes(1)
}
}
func BenchmarkCarbon_AddMinute(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddMinute()
}
}
func BenchmarkCarbon_SubMinutes(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubMinutes(1)
}
}
func BenchmarkCarbon_SubMinute(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubMinute()
}
}
func BenchmarkCarbon_AddSeconds(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddSeconds(1)
}
}
func BenchmarkCarbon_AddSecond(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddSecond()
}
}
func BenchmarkCarbon_SubSeconds(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubSeconds(1)
}
}
func BenchmarkCarbon_SubSecond(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubSecond()
}
}
func BenchmarkCarbon_AddMilliseconds(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddMilliseconds(1)
}
}
func BenchmarkCarbon_AddMillisecond(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddMillisecond()
}
}
func BenchmarkCarbon_SubMilliseconds(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubMilliseconds(1)
}
}
func BenchmarkCarbon_SubMillisecond(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubMillisecond()
}
}
func BenchmarkCarbon_AddMicroseconds(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddMicroseconds(1)
}
}
func BenchmarkCarbon_AddMicrosecond(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddMicrosecond()
}
}
func BenchmarkCarbon_SubMicroseconds(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubMicroseconds(1)
}
}
func BenchmarkCarbon_SubMicrosecond(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubMicrosecond()
}
}
func BenchmarkCarbon_AddNanoseconds(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddNanoseconds(1)
}
}
func BenchmarkCarbon_AddNanosecond(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.AddNanosecond()
}
}
func BenchmarkCarbon_SubNanoseconds(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubNanoseconds(1)
}
}
func BenchmarkCarbon_SubNanosecond(b *testing.B) {
now := Now()
for n := 0; n < b.N; n++ {
now.SubNanosecond()
}
}