forked from brianvoe/gofakeit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
color_test.go
106 lines (80 loc) · 1.42 KB
/
color_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
package gofakeit
import (
"fmt"
"testing"
)
func ExampleColor() {
Seed(11)
fmt.Println(Color())
// Output: SlateGray
}
func ExampleFaker_Color() {
f := New(11)
fmt.Println(f.Color())
// Output: SlateGray
}
func BenchmarkColor(b *testing.B) {
for i := 0; i < b.N; i++ {
Color()
}
}
func ExampleNiceColors() {
Seed(11)
fmt.Println(NiceColors())
// Output: [#fffbb7 #a6f6af #66b6ab #5b7c8d #4f2958]
}
func ExampleFaker_NiceColors() {
f := New(11)
fmt.Println(f.NiceColors())
// Output: [#fffbb7 #a6f6af #66b6ab #5b7c8d #4f2958]
}
func BenchmarkNiceColors(b *testing.B) {
for i := 0; i < b.N; i++ {
NiceColors()
}
}
func ExampleSafeColor() {
Seed(11)
fmt.Println(SafeColor())
// Output: aqua
}
func ExampleFaker_SafeColor() {
f := New(11)
fmt.Println(f.SafeColor())
// Output: aqua
}
func BenchmarkSafeColor(b *testing.B) {
for i := 0; i < b.N; i++ {
SafeColor()
}
}
func ExampleHexColor() {
Seed(11)
fmt.Println(HexColor())
// Output: #ef759a
}
func ExampleFaker_HexColor() {
f := New(11)
fmt.Println(f.HexColor())
// Output: #ef759a
}
func BenchmarkHexColor(b *testing.B) {
for i := 0; i < b.N; i++ {
HexColor()
}
}
func ExampleRGBColor() {
Seed(11)
fmt.Println(RGBColor())
// Output: [180 18 181]
}
func ExampleFaker_RGBColor() {
f := New(11)
fmt.Println(f.RGBColor())
// Output: [180 18 181]
}
func BenchmarkRGBColor(b *testing.B) {
for i := 0; i < b.N; i++ {
RGBColor()
}
}