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-05-04 23:47:24 +08:00
parent 917bad7494
commit d59666d9e6
9 changed files with 427 additions and 3 deletions

18
maps/map_test.go Normal file
View File

@ -0,0 +1,18 @@
package maps_test
import (
"testing"
"github.com/charlienet/go-mixed/maps"
)
func TestMap(t *testing.T) {
_ = maps.NewHashMap[string, any]()
}
func TestHashMap(t *testing.T) {
var m maps.Map[string, any] = maps.NewHashMap[string, any]()
_ = m
}