This commit is contained in:
Mat Ryer 2020-09-18 09:52:55 +01:00
parent 2ea33710f3
commit ca877b5ffb

View File

@ -25,15 +25,15 @@ $ go get github.com/matryer/moq
``` ```
moq [flags] source-dir interface [interface2 [interface3 [...]]] moq [flags] source-dir interface [interface2 [interface3 [...]]]
-fmt string -fmt string
go pretty-printer: gofmt, goimports or noop (default gofmt) go pretty-printer: gofmt, goimports or noop (default gofmt)
-out string -out string
output file (default stdout) output file (default stdout)
-pkg string -pkg string
package name (default will infer) package name (default will infer)
-stub -stub
return zero values when no mock implementation is provided, do not panic return zero values when no mock implementation is provided, do not panic
-skip-ensure -skip-ensure
suppress mock implementation check, avoid import cycle if mocks generated outside of the tested package suppress mock implementation check, avoid import cycle if mocks generated outside of the tested package
Specifying an alias for the mock is also supported with the format 'interface:alias' Specifying an alias for the mock is also supported with the format 'interface:alias'