-
Notifications
You must be signed in to change notification settings - Fork 1
/
type_test.go
68 lines (59 loc) · 1.11 KB
/
type_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
package cuckle
import "testing"
func TestTypeList(t *testing.T) {
for _, test := range []struct {
t Type
e Type
}{
{"", "list<>"},
{"a", "list<a>"},
} {
t.Log("Test:", test)
if a := TypeList(test.t); a != test.e {
t.Errorf("Actual %v, expected %v", a, test.e)
}
}
}
func TestTypeMap(t *testing.T) {
for _, test := range []struct {
k, v Type
e Type
}{
{"", "", "map<, >"},
{"a", "b", "map<a, b>"},
} {
t.Log("Test:", test)
if a := TypeMap(test.k, test.v); a != test.e {
t.Errorf("Actual %v, expected %v", a, test.e)
}
}
}
func TestTypeSet(t *testing.T) {
for _, test := range []struct {
t Type
e Type
}{
{"", "set<>"},
{"a", "set<a>"},
} {
t.Log("Test:", test)
if a := TypeSet(test.t); a != test.e {
t.Errorf("Actual %v, expected %v", a, test.e)
}
}
}
func TestTypeTuple(t *testing.T) {
for _, test := range []struct {
t []Type
e Type
}{
{nil, "tuple<>"},
{[]Type{"a"}, "tuple<a>"},
{[]Type{"a", "b"}, "tuple<a, b>"},
} {
t.Log("Test:", test)
if a := TypeTuple(test.t...); a != test.e {
t.Errorf("Actual %v, expected %v", a, test.e)
}
}
}