-
Notifications
You must be signed in to change notification settings - Fork 61
/
none_test.go
68 lines (47 loc) · 1.01 KB
/
none_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 un
import (
"strings"
"testing"
)
func init() {
}
func TestNoneSlice(t *testing.T) {
fn := func(s interface{}) bool {
return false
}
s := ToI([]int{1, 2, 3, 4, 5})
result := None(fn, s)
equals(t, true, result)
}
func TestNoneMap(t *testing.T) {
fn := func(s interface{}) bool {
return false
}
m := map[string]int{"a": 1, "b": 2, "c": 3, "d": 4, "e": 5}
result := None(fn, m)
equals(t, true, result)
}
func TestNoneSliceWithInt(t *testing.T) {
fn := func(i int) bool {
return i > 10
}
s := []int{1, 2, 3, 4, 5}
result := NoneInt(fn, s)
equals(t, true, result)
}
func TestNoneSliceWithString(t *testing.T) {
fn := func(s string) bool {
return strings.Contains(s, "z")
}
s := []string{"a!", "b!", "c!", "d!", "e!"}
result := NoneString(fn, s)
equals(t, true, result)
}
func TestNoneMapWithInt(t *testing.T) {
fn := func(i interface{}) bool {
return i.(int) >= 211
}
m := map[string]int{"a": 1, "b": 2, "c": 3, "d": 4, "e": 5}
result := None(fn, m)
equals(t, true, result)
}