-
Notifications
You must be signed in to change notification settings - Fork 0
/
first_test.go
47 lines (42 loc) · 887 Bytes
/
first_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
package slices_test
import (
"testing"
"github.com/dosadczuk/go-slices"
"github.com/google/go-cmp/cmp"
)
func TestFirst(t *testing.T) {
tt := map[string]struct {
// input
values []int
// assert
wantValue int
wantFound bool
}{
"empty slice": {
values: nil, // zero value
wantValue: 0, // zero value
wantFound: false, // zero value
},
"slice with value": {
values: []int{1},
wantValue: 1,
wantFound: true,
},
"slice with values": {
values: []int{1, 2, 3, 4, 5},
wantValue: 1,
wantFound: true,
},
}
for name, tc := range tt {
t.Run(name, func(t *testing.T) {
haveValue, haveFound := slices.First(tc.values)
if !cmp.Equal(tc.wantValue, haveValue) {
t.Error(cmp.Diff(tc.wantValue, haveValue))
}
if !cmp.Equal(tc.wantFound, haveFound) {
t.Error(cmp.Diff(tc.wantFound, haveFound))
}
})
}
}