-
Notifications
You must be signed in to change notification settings - Fork 0
/
entries_test.go
52 lines (47 loc) · 890 Bytes
/
entries_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
package maps_test
import (
"sort"
"testing"
"github.com/dosadczuk/go-maps"
"github.com/google/go-cmp/cmp"
)
func TestEntries(t *testing.T) {
tt := map[string]struct {
// input
values map[int]int
// assert
want []maps.Entry[int, int]
}{
"empty map": {
values: nil, // zero value
want: nil, // zero value
},
"map with key-value pair": {
values: map[int]int{1: 2},
want: []maps.Entry[int, int]{{1, 2}},
},
"map with key-value pairs": {
values: map[int]int{
1: 2,
2: 3,
3: 4,
},
want: []maps.Entry[int, int]{
{1, 2},
{2, 3},
{3, 4},
},
},
}
for name, tc := range tt {
t.Run(name, func(t *testing.T) {
have := maps.Entries(tc.values)
sort.Slice(have, func(i, j int) bool {
return have[i].Key < have[j].Key
})
if !cmp.Equal(tc.want, have) {
t.Error(cmp.Diff(tc.want, have))
}
})
}
}