首页  >  文章  >  后端开发  >  mockgen 不创建模拟

mockgen 不创建模拟

WBOY
WBOY转载
2024-02-06 08:45:03989浏览

mockgen 不创建模拟

问题内容

这是我的文件夹结构:

demo/
|-- go.mod
|-- main.go
|-- interfaces/
|   |-- interfaces.go
|-- mocks/

这是我的 go.mod 文件

go 1.20

require (
    github.com/golang/mock v1.6.0 // indirect
    golang.org/x/mod v0.4.2 // indirect
    golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect
    golang.org/x/tools v0.1.1 // indirect
    golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
)

这是我的interfaces.go

package interfaces

type MyInterface interface {
    DoSomething() error
    GetValue() int
}

当我尝试运行mockgen命令时,它并没有创建模拟,而是给了我这个帮助描述: mockgen 有两种操作模式:source 和reflect。Source 模式从源文件生成mock 接口。它是通过使用 -source 标志启用的。在此模式下可能有用的其他标志是 -imports 和 -aux_files。

https://manpages.org/mockgen

我运行了以下命令:mockgen -destination=mocks/mock_myinterface.go -package=mocks demo/interfaces MyInterface

如何正确使用mockgen命令?


正确答案


您可能应该使用 Uber 维护的分支(因为 Google 放弃了 golang/mock):https: //github.com/uber-go/mock

如果您只是运行 mockgen 命令,您将获得命令选项。应该对您有用的东西是这样的:

mockgen -source interfaces/interfaces.go -destination mocks/mocks.go

以上是mockgen 不创建模拟的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:stackoverflow.com。如有侵权,请联系admin@php.cn删除