Unit testing in Golang
Unit testing is essential when creating software. It tests each component one after another but does not test it entirely. In this post, we will use the testing package to do some unit testing in Go. What is testing? Testing is when we want to check the correctness of our code. It’s a really important […]
Unit testing in Golang Read More »