Any documented make commands seem to require the installation of mockgen:
$ make
/home/appuser/go/bin/mockgen -destination=mock_markdown/converter.go github.com/stevejefferson/trac2gitea/markdown Converter
make: /home/appuser/go/bin/mockgen: No such file or directory
make: *** [Makefile:57: mock_markdown/converter.go] Error 127
After trying to solve this using the following extra commands:
go install go.uber.org/mock/mockgen@latest
go get go.uber.org/mock/mockgen/model
We are left with make test complaining about some broken package name issue:
github.com/golang/mock/gomock vs go.uber.org/mock/gomock
Any documented
make
commands seem to require the installation ofmockgen
:After trying to solve this using the following extra commands:
We are left with
make test
complaining about some broken package name issue: