嗨,我想测试或模拟某个函数并为此返回一个模拟响应。下面演示的是我的代码
示例.go
package main
import (
"fmt"
log "github.com/sirupsen/logrus"
)
var connectDB = Connect
func Sample() {
config := NewConfig()
response := connectDB(config)
fmt.Println(response)
log.Info(response)
}
func Connect(config *Config) string {
return "Inside the connect"
}
我的测试是这样的
Sample_test.go
package main
import (
"testing"
)
func TestSample(t *testing.T) {
oldConnect := connectDB
connectDB := func(config *Config) string {
return "Mock response"
}
defer func() { connectDB = oldConnect }()
Sample()
}
因此,在运行go test时,我期望接收和输出Mock 响应,但我仍然进入Connect 内部。我在这里缺少什么吗?