-
Notifications
You must be signed in to change notification settings - Fork 27
/
person_test.go
119 lines (99 loc) · 3.05 KB
/
person_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
package kolpa
import (
"reflect"
"testing"
)
func TestPerson(t *testing.T) {
k := C()
for _, lang := range getLanguages() {
k.SetLanguage(lang)
name := k.Name()
typeOfOutput := reflect.TypeOf(name).Kind()
if typeOfOutput != reflect.String {
t.Errorf("Name generation is failed for %s.", lang)
}
name = k.NameMale()
typeOfOutput = reflect.TypeOf(name).Kind()
if typeOfOutput != reflect.String {
t.Errorf("NameMale generation is failed for %s.", lang)
}
name = k.NameFemale()
typeOfOutput = reflect.TypeOf(name).Kind()
if typeOfOutput != reflect.String {
t.Errorf("NameMale generation is failed for %s.", lang)
}
name = k.FirstName()
typeOfOutput = reflect.TypeOf(name).Kind()
if typeOfOutput != reflect.String {
t.Errorf("FirstName generation is failed for %s.", lang)
}
name = k.FirstNameMale()
typeOfOutput = reflect.TypeOf(name).Kind()
if typeOfOutput != reflect.String {
t.Errorf("FirstNameMale generation is failed for %s.", lang)
}
name = k.FirstNameFemale()
typeOfOutput = reflect.TypeOf(name).Kind()
if typeOfOutput != reflect.String {
t.Errorf("FirstNameFemale generation is failed for %s.", lang)
}
name = k.LastName()
typeOfOutput = reflect.TypeOf(name).Kind()
if typeOfOutput != reflect.String {
t.Errorf("LastName generation is failed for %s.", lang)
}
name = k.LastNameMale()
typeOfOutput = reflect.TypeOf(name).Kind()
if typeOfOutput != reflect.String {
t.Errorf("LastNameMale generation is failed for %s.", lang)
}
name = k.LastNameFemale()
typeOfOutput = reflect.TypeOf(name).Kind()
if typeOfOutput != reflect.String {
t.Errorf("LastNameFemale generation is failed for %s.", lang)
}
name = k.Prefix()
typeOfOutput = reflect.TypeOf(name).Kind()
if typeOfOutput != reflect.String {
t.Errorf("Prefix generation is failed for %s.", lang)
}
name = k.PrefixMale()
typeOfOutput = reflect.TypeOf(name).Kind()
if typeOfOutput != reflect.String {
t.Errorf("PrefixMale generation is failed for %s.", lang)
}
name = k.PrefixFemale()
typeOfOutput = reflect.TypeOf(name).Kind()
if typeOfOutput != reflect.String {
t.Errorf("PrefixFemale generation is failed for %s.", lang)
}
name = k.Suffix()
typeOfOutput = reflect.TypeOf(name).Kind()
if typeOfOutput != reflect.String {
t.Errorf("Suffix generation is failed for %s.", lang)
}
name = k.SuffixMale()
typeOfOutput = reflect.TypeOf(name).Kind()
if typeOfOutput != reflect.String {
t.Errorf("SuffixMale generation is failed for %s.", lang)
}
name = k.SuffixFemale()
typeOfOutput = reflect.TypeOf(name).Kind()
if typeOfOutput != reflect.String {
t.Errorf("SuffixFemale generation is failed for %s.", lang)
}
}
gender := generateGender(true)
if gender != "male" {
t.Errorf("generateGender function is failed.")
}
gender = generateGender(false)
if gender != "female" {
t.Errorf("generateGender function is failed.")
}
gender = k.Gender()
typeOfOutput := reflect.TypeOf(gender).Kind()
if typeOfOutput != reflect.String {
t.Errorf("Gender generation is failed.")
}
}