mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-18 00:22:41 +08:00
map
This commit is contained in:
18
maps/map_test.go
Normal file
18
maps/map_test.go
Normal 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
|
||||
|
||||
}
|
Reference in New Issue
Block a user