tdengine-mapper-go/syncmap/map_test.go

15 lines
177 B
Go
Raw Normal View History

package syncmap
import (
"log"
"testing"
)
func TestAA(t *testing.T) {
var m Map[string, int]
m.Store("a", 1234)
value, _ := m.Load("a")
log.Println("value:", value)
}