failed to link __xgo_link_get_pc_name(requires xgo)
Opened this issue · 3 comments
saoDiSengTank commented
Hi Team,
我第一次运行mock.Patch方法,报错 failed to link __xgo_link_get_pc_name(requires xgo)是什么问题?
下面是我的代码,就是一个简单的测试:
func TestSendRequest(t *testing.T) {
patches := gomonkey.NewPatches()
defer patches.Reset()
mock.Patch(aaa, func() (string, error) {
return "asdacdcs", errors.New("testawdwex")
})
s, err := aaa()
fmt.Println("ssad", err)
fmt.Println("cweD", s)
panic("test")
}
func aaa() (string, error) {
return "", nil
}
M1 Pro 芯片,系统是 15.1.1 (24B91)
xhd2015 commented
你是怎么运行测试用例的?go版本是多少?
saoDiSengTank commented
你是怎么运行测试用例的?go版本是多少?
直接点击Test方法上的Run Test,我的go版本是1.23
xhd2015 commented
需要xgo test才行