forked from brianvoe/gofakeit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
company_test.go
225 lines (174 loc) · 3.11 KB
/
company_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
package gofakeit
import (
"fmt"
"testing"
)
func ExampleCompany() {
Seed(11)
fmt.Println(Company())
// Output: TransparaGov
}
func ExampleFaker_Company() {
f := New(11)
fmt.Println(f.Company())
// Output: TransparaGov
}
func BenchmarkCompany(b *testing.B) {
for i := 0; i < b.N; i++ {
Company()
}
}
func TestCompany(t *testing.T) {
for i := 0; i < 100; i++ {
Company()
}
}
func ExampleCompanySuffix() {
Seed(11)
fmt.Println(CompanySuffix())
// Output: Inc
}
func ExampleFaker_CompanySuffix() {
f := New(11)
fmt.Println(f.CompanySuffix())
// Output: Inc
}
func BenchmarkCompanySuffix(b *testing.B) {
for i := 0; i < b.N; i++ {
CompanySuffix()
}
}
func ExampleBlurb() {
Seed(11)
fmt.Println(Blurb())
// Output: Teamwork
}
func ExampleFaker_Blurb() {
f := New(11)
fmt.Println(f.Blurb())
// Output: Teamwork
}
func BenchmarkBlurb(b *testing.B) {
for i := 0; i < b.N; i++ {
Blurb()
}
}
func ExampleBuzzWord() {
Seed(11)
fmt.Println(BuzzWord())
// Output: open system
}
func ExampleFaker_BuzzWord() {
f := New(11)
fmt.Println(f.BuzzWord())
// Output: open system
}
func BenchmarkBuzzWord(b *testing.B) {
for i := 0; i < b.N; i++ {
BuzzWord()
}
}
func ExampleBS() {
Seed(11)
fmt.Println(BS())
// Output: models
}
func ExampleFaker_BS() {
f := New(11)
fmt.Println(f.BS())
// Output: models
}
func BenchmarkBS(b *testing.B) {
for i := 0; i < b.N; i++ {
BS()
}
}
func ExampleJob() {
Seed(11)
jobInfo := Job()
fmt.Println(jobInfo.Company)
fmt.Println(jobInfo.Title)
fmt.Println(jobInfo.Descriptor)
fmt.Println(jobInfo.Level)
// Output: TransparaGov
// Specialist
// Direct
// Configuration
}
func ExampleFaker_Job() {
f := New(11)
jobInfo := f.Job()
fmt.Println(jobInfo.Company)
fmt.Println(jobInfo.Title)
fmt.Println(jobInfo.Descriptor)
fmt.Println(jobInfo.Level)
// Output: TransparaGov
// Specialist
// Direct
// Configuration
}
func BenchmarkJob(b *testing.B) {
for i := 0; i < b.N; i++ {
Job()
}
}
func ExampleJobTitle() {
Seed(11)
fmt.Println(JobTitle())
// Output: Strategist
}
func ExampleFaker_JobTitle() {
f := New(11)
fmt.Println(f.JobTitle())
// Output: Strategist
}
func BenchmarkJobTitle(b *testing.B) {
for i := 0; i < b.N; i++ {
JobTitle()
}
}
func ExampleJobDescriptor() {
Seed(11)
fmt.Println(JobDescriptor())
// Output: Product
}
func ExampleFaker_JobDescriptor() {
f := New(11)
fmt.Println(f.JobDescriptor())
// Output: Product
}
func BenchmarkJobDescriptor(b *testing.B) {
for i := 0; i < b.N; i++ {
JobDescriptor()
}
}
func ExampleJobLevel() {
Seed(11)
fmt.Println(JobLevel())
// Output: Solutions
}
func ExampleFaker_JobLevel() {
f := New(11)
fmt.Println(f.JobLevel())
// Output: Solutions
}
func BenchmarkJobLevel(b *testing.B) {
for i := 0; i < b.N; i++ {
JobLevel()
}
}
func ExampleSlogan() {
Seed(11)
fmt.Println(Slogan())
// Output: local area network maximize Drive, mission-critical.
}
func ExampleFaker_Slogan() {
f := New(11)
fmt.Println(f.Slogan())
// Output: local area network maximize Drive, mission-critical.
}
func BenchmarkSlogan(b *testing.B) {
for i := 0; i < b.N; i++ {
Slogan()
}
}