Files

14 lines
196 B
Go
Raw Permalink Normal View History

2023-09-16 20:14:20 +08:00
package runtimex_test
import (
"testing"
2023-09-17 18:05:01 +08:00
"code.yun.ink/open/utils/runtimex"
2023-09-16 20:14:20 +08:00
)
func TestGetgId(t *testing.T) {
t.Log("测试获取goroutine_id")
t.Log("goroutine_id:", runtimex.GetGid())
2023-09-17 18:05:01 +08:00
2023-09-16 20:14:20 +08:00
}