-
Notifications
You must be signed in to change notification settings - Fork 0
/
flatten_test.go
48 lines (43 loc) · 951 Bytes
/
flatten_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
package slices_test
import (
"testing"
"github.com/dosadczuk/go-slices"
"github.com/google/go-cmp/cmp"
)
func TestFlatten(t *testing.T) {
tt := map[string]struct {
// input
values [][]int
// assert
want []int
}{
"empty slice": {
values: nil, // zero value
want: nil, // zero value
},
"slice with sub-slice with value": {
values: [][]int{{1}},
want: []int{1},
},
"slice with sub-slice with values": {
values: [][]int{{1, 2, 3, 4, 5}},
want: []int{1, 2, 3, 4, 5},
},
"slice with sub-slices with value": {
values: [][]int{{1}, {2}, {3}, {4}, {5}},
want: []int{1, 2, 3, 4, 5},
},
"slice with sub-slices with values": {
values: [][]int{{1, 2}, {3, 4}, {5}},
want: []int{1, 2, 3, 4, 5},
},
}
for name, tc := range tt {
t.Run(name, func(t *testing.T) {
have := slices.Flatten(tc.values)
if !cmp.Equal(tc.want, have) {
t.Error(cmp.Diff(tc.want, have))
}
})
}
}