-
Notifications
You must be signed in to change notification settings - Fork 61
/
every_test.go
70 lines (49 loc) · 1.09 KB
/
every_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
package un
import "testing"
func init() {
// suite("Every")
}
func TestEverySlice(t *testing.T) {
title("Slice")
fn := func(s interface{}) bool {
return true
}
s := ToI([]int{1, 2, 3, 4, 5})
result := Every(fn, s)
equals(t, true, result)
}
func TestEveryMap(t *testing.T) {
title("Map")
fn := func(s interface{}) bool {
return true
}
m := map[string]int{"a": 1, "b": 2, "c": 3, "d": 4, "e": 5}
result := Every(fn, m)
equals(t, true, result)
}
func TestEverySliceWithInt(t *testing.T) {
fn := func(i int) bool {
return i <= 5
}
s := []int{1, 2, 3, 4, 5}
result := EveryInt(fn, s)
equals(t, true, result)
}
func TestEverySliceWithString(t *testing.T) {
fn := func(s string) bool {
// return strings.Contains(s, "!")
return true
}
s := []string{"a!", "b!", "c!", "d!", "e!"}
result := EveryString(fn, s)
equals(t, true, result)
}
func TestEveryMapWithInt(t *testing.T) {
title("Map With Int")
fn := func(i interface{}) bool {
return i.(int) <= 5
}
m := map[string]int{"a": 1, "b": 2, "c": 3, "d": 4, "e": 5}
result := Every(fn, m)
equals(t, true, result)
}