1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 00:22:41 +08:00
This commit is contained in:
2022-11-18 16:57:15 +08:00
parent cf30b4eb4c
commit 278c8b4cb7
7 changed files with 124 additions and 85 deletions

View File

@ -25,3 +25,8 @@ func TestForEach(t *testing.T) {
assert.True(t, hashMap.Exist(k))
}
}
func TestSynchronize(t *testing.T) {
mep := NewHashMap[string, string]().Synchronize()
mep.Set("aaaa", "bbb")
}