My package test cases are scattered across multiple files, if I run go test it runs all test cases in the package.
go test
It is unnecessar
go test -v ./<package_name> -run Test
Prevents caching of test results.
go test -count=1 ./<package_name> -run Test