https://github.com/tkc/go-testify-sandbox
https://github.com/tkc/go-testify-sandbox
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/tkc/go-testify-sandbox
- Owner: tkc
- Created: 2020-03-17T08:01:34.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-25T10:07:04.000Z (about 6 years ago)
- Last Synced: 2025-12-30T11:35:49.719Z (6 months ago)
- Language: Go
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-test-pattern-sandbox
## testify
```sh
go test ./testify -v
```
## gomock
```sh
go get -u github.com/golang/mock/gomock
go get -u github.com/golang/mock/mockgen
```
```sh
$which mockgen
<$GOPATH>/bin/mockgen
```
```sh
go generate ./...
```
```sh
go test ./gomock -v
```