-
Notifications
You must be signed in to change notification settings - Fork 5
/
naming_test.go
97 lines (89 loc) · 1.65 KB
/
naming_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
package gen_test
import (
"testing"
"github.com/go-clang/gen"
)
func TestUpperFirstCharacter(t *testing.T) {
t.Parallel()
tests := []struct {
name string
data string
expect string
}{
{
name: "lowerToUpperOneChar",
data: "a",
expect: "A",
},
{
name: "UpperToUpperOneChar",
data: "A",
expect: "A",
},
{
name: "lowerCaseToUpperCase",
data: "abc",
expect: "Abc",
},
{
name: "UpperCaseToUpperCase",
data: "Abc",
expect: "Abc",
},
{
name: "UpperToUpper",
data: "ABC",
expect: "ABC",
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
if got, want := gen.UpperFirstCharacter(tt.data), tt.expect; got != want {
t.Fatalf("got %s but want %s", got, want)
}
})
}
}
func TestTrimCommonFunctionNamePrefix(t *testing.T) {
t.Parallel()
tests := map[string]struct {
name string
want string
}{
"createCXCursorSet": {
name: "createCXCursorSet",
want: "CursorSet",
},
"getKind": {
name: "getKind",
want: "Kind",
},
"GetObjCSelector": {
name: "GetObjCSelector",
want: "Selector",
},
"getCXXManglings": {
name: "getCXXManglings",
want: "CXXManglings",
},
"getObjCManglings": {
name: "getObjCManglings",
want: "ObjCManglings",
},
"SourceLocation": {
name: "SourceLocation",
want: "SourceLocation",
},
}
for name, tt := range tests {
tt := tt
t.Run(name, func(t *testing.T) {
t.Parallel()
if got := gen.TrimCommonFunctionNamePrefix(tt.name); got != tt.want {
t.Fatalf("TrimCommonFunctionNamePrefix(%v) = %v, want %v", tt.name, got, tt.want)
}
})
}
}