Sample of GRPC tests written on go
You have to install go
Clone the project and install go packages
git clone https://github.com/Nikita-Filonov/sample_go_grpc_testing.git`
cd ./sample_go_grpc_testing
go mod download
make test
If you want to run tests without make file, then make sure env variable are set
export ENV=local
export ALLURE_RESULTS_PATH=.
go test ./tests -v -timeout 2m
Generate allure report
cd tests
allure generate
Serve allure report
cd tests
allure serve