https://github.com/bavix/greeter-gripmock-embedded
https://github.com/bavix/greeter-gripmock-embedded
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bavix/greeter-gripmock-embedded
- Owner: bavix
- Created: 2026-02-14T17:11:30.000Z (6 months ago)
- Default Branch: master
- Last Pushed: 2026-04-08T18:40:38.000Z (4 months ago)
- Last Synced: 2026-04-08T20:23:45.838Z (4 months ago)
- Language: Go
- Size: 74.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Greeter
Test using gripmock SDK (embedded mock).
> **⚠️ Experimental SDK**
> This SDK is experimental and may be discontinued or never released. Use at your own risk.
## Installing the dependency
```bash
go get github.com/bavix/gripmock/v3/pkg/sdk@sdk
```
For local development with gripmock next to this repo, add to go.mod:
```
replace github.com/bavix/gripmock/v3 => ../gripmock
```
Then run `go mod tidy`.
## Generating helloworld
```bash
make generate
```
This generates `helloworld/*.pb.go` and `timed/*.pb.go` from `greeter.proto` and `timed.proto` via protoc.
## Running tests
```bash
make test
# or
go test -v ./...
```