Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 441 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 441 Bytes

gRPC Test

An example of writing tests for a gRPC server.

Setup

  1. Install protobuf compiler and the plugin for Go.

    $ brew install protobuf
    $ go get github.com/golang/protobuf/protoc-gen-go
    $ # Run the following if you haven't done so already.
    $ export PATH="$PATH:$(go env GOPATH)/bin"
  2. Run the tests.

    $ make test

Reference and Credits