Skip to content

Latest commit

 

History

History

test

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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