Files
open-im-server/pkg/localcache/link/link_test.go
T

21 lines
219 B
Go
Raw Normal View History

2024-01-08 20:36:41 +08:00
package link
import (
"testing"
)
func TestName(t *testing.T) {
v := New(1)
//v.Link("a:1", "b:1", "c:1", "d:1")
v.Link("a:1", "b:1", "c:1")
v.Link("z:1", "b:1")
//v.DelKey("a:1")
v.Del("z:1")
2024-01-08 20:38:23 +08:00
t.Log(v)
2024-01-08 20:36:41 +08:00
}