forked from worldline-go/struct2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtag_test.go
46 lines (44 loc) · 768 Bytes
/
tag_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
package struct2
import (
"reflect"
"testing"
)
func Test_parseTag(t *testing.T) {
type args struct {
tag string
}
tests := []struct {
name string
args args
want string
want1 tagOptions
}{
{
name: "empty",
args: args{
tag: "",
},
want: "",
want1: tagOptions{},
},
{
name: "multi",
args: args{
tag: "struct,omitempty,ptr2",
},
want: "struct",
want1: tagOptions{"omitempty", "ptr2"},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, got1 := parseTag(tt.args.tag)
if got != tt.want {
t.Errorf("parseTag() got = %v, want %v", got, tt.want)
}
if !reflect.DeepEqual(got1, tt.want1) {
t.Errorf("parseTag() got1 = %v, want1 %v", got1, tt.want1)
}
})
}
}