blob: df36506d86fd5637e7b64759a81214467578cf8d [file] [log] [blame] [edit]
//go:build go1.23
// +build go1.23
package mapset
import (
"testing"
)
func Test_Elements123(t *testing.T) {
a := NewSet[string]()
a.Add("Z")
a.Add("Y")
a.Add("X")
a.Add("W")
b := NewSet[string]()
for elem := range Elements(a) {
b.Add(elem)
}
if !a.Equal(b) {
t.Error("The sets are not equal after iterating (Each) through the first set")
}
var count int
for range Elements(a) {
if count == 2 {
break
}
count++
}
if count != 2 {
t.Error("Iteration should stop on the way")
}
}