1
0
mirror of https://github.com/charlienet/go-mixed.git synced 2025-07-18 08:32:40 +08:00
Files
go-mixed/maps/map_test.go
2022-05-04 23:47:24 +08:00

19 lines
256 B
Go

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
}