An open API service indexing awesome lists of open source software.

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.

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
```