forked from alphadose/haxmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiterator_test.go
53 lines (43 loc) · 833 Bytes
/
iterator_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
//go:build go1.23
// +build go1.23
package haxmap
import (
"testing"
)
func TestIterators(t *testing.T) {
type Value = struct {
key int
}
m := New[int, *Value]()
itemCount := 16
for i := itemCount; i > 0; i-- {
m.Set(i, &Value{i})
}
t.Run("iterator", func(t *testing.T) {
counter := 0
for k, v := range m.Iterator() {
if v == nil {
t.Error("Expecting an object.")
} else if k != v.key {
t.Error("Incorrect key/value pairs")
}
counter++
}
if counter != itemCount {
t.Error("Iterated item count did not match.")
}
})
t.Run("keys", func(t *testing.T) {
counter := 0
for k := range m.Keys() {
_, ok := m.Get(k)
if !ok {
t.Error("The key is not is the map")
}
counter++
}
if counter != itemCount {
t.Error("Iterated item count did not match.")
}
})
}