-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathany_test.go
69 lines (48 loc) · 1.02 KB
/
any_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
package un
import (
"strings"
"testing"
)
func init() {
// suite("Any")
}
func TestAnySlice(t *testing.T) {
fn := func(s interface{}) bool {
return true
}
s := ToI([]int{1, 2, 3, 4, 5})
result := Any(fn, s)
equals(t, true, result)
}
func TestAnyMap(t *testing.T) {
fn := func(s interface{}) bool {
return true
}
m := map[string]int{"a": 1, "b": 2, "c": 3, "d": 4, "e": 5}
result := Any(fn, m)
equals(t, true, result)
}
func TestAnySliceWithInt(t *testing.T) {
fn := func(i int) bool {
return i == 3
}
s := []int{1, 2, 3, 4, 5}
result := AnyInt(fn, s)
equals(t, true, result)
}
func TestAnySliceWithString(t *testing.T) {
fn := func(s string) bool {
return strings.Contains(s, "d")
}
s := []string{"a!", "b!", "c!", "d!", "e!"}
result := AnyString(fn, s)
equals(t, true, result)
}
func TestAnyMapWithInt(t *testing.T) {
fn := func(i interface{}) bool {
return i.(int) == 2
}
m := map[string]int{"a": 1, "b": 2, "c": 3, "d": 4, "e": 5}
result := Any(fn, m)
equals(t, true, result)
}