tdengine-mapper-go/sync_map_test.go
2024-09-14 15:57:03 +08:00

15 lines
178 B
Go

package tmapping
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)
}