mocks

Golang 函数测试中的 mocks 和 stubs

在 go 函数测试中,mocks 和 stubs 允许隔离和验证外部依赖项。mocks 模拟依赖项的行为,而 stubs 提供固定值。使用 mocks,需要使用 mockgen 生…