mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-18 08:32:40 +08:00
19 lines
256 B
Go
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
|
|
|
|
}
|