mock icon indicating copy to clipboard operation
mock copied to clipboard

How to write the mock result to a file in reflect mode

Open someview opened this issue 3 years ago β€’ 3 comments

Actual behavior A clear and concise description of what the bug is.

Expected behavior A clear and concise description of what you expected to happen.

To Reproduce Steps to reproduce the behavior

  1. ...
  2. ...

Additional Information

  • gomock mode (reflect or source):
  • gomock version or git ref:
  • golang version:

Triage Notes for the Maintainers

someview avatar Nov 29 '22 11:11 someview

gomock mode (reflect or source): //go:generate mockgen . DecPooler type DecPooler interface { Pooler FreeToChan(msg *dto.DecMsg) //ε½’θΏ˜ζΆˆζ―εˆ°ζ± ε­δΈ­ AllocFromChan() *dto.DecMsg //δ»Žζ± ε­δΈ­εˆ†ι…ζΆˆζ― } Is there any way to write the mock result to a file in reflect mode

someview avatar Nov 29 '22 11:11 someview

Was looking for this as well, can't do something like > out.go in go:generate and -destination doesn't seem to be supported in reflect mode.

geoah avatar Dec 23 '22 21:12 geoah

For writing the mock result to a file put the destination flag in the first place, like this

//go:generate mockgen -destination mock/resquest_test.go -package ${GOPACKAGE} some/package Request

package and interfaces always should be last

m-shev avatar Dec 27 '22 08:12 m-shev