https://github.com/3n0ugh/grpc-test-sample
The gRPC server test sample repository in Go.
https://github.com/3n0ugh/grpc-test-sample
go golang grpc-test
Last synced: 6 months ago
JSON representation
The gRPC server test sample repository in Go.
- Host: GitHub
- URL: https://github.com/3n0ugh/grpc-test-sample
- Owner: 3n0ugh
- License: mit
- Created: 2022-04-24T22:26:03.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-24T23:43:31.000Z (over 3 years ago)
- Last Synced: 2025-07-09T01:52:43.940Z (6 months ago)
- Topics: go, golang, grpc-test
- Language: Go
- Homepage: https://medium.com/@3n0ugh/how-to-test-grpc-servers-in-go-ba90fe365a18
- Size: 16.6 KB
- Stars: 11
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# grpc-test-sample
The gRPC server test sample repository in Go.
Check [this](https://medium.com/@3n0ugh/how-to-test-grpc-servers-in-go-ba90fe365a18) blog to learn how to write test for gRPC servers.
# Instructions
- To run tests:
```bash
go test ./... -v
```
- To run server:
```bash
go run ./server
```
- To run client:
```bash
go run ./client
```