How I organize my API tests in Golang
Testing is apparently the most important part in writing API's since there could be so many ways the API's could mis-perform, and you need some way to check for their authenticity of response. Lately, I was tasked with writing unit tests for the API's in Golang at work. After a…