Not sure when Golang added the -args option to Tests. But this now works:
$ go test -cover -v -run TestEventsTableTests -args -v 3 -logtostderr
true
The -args parameter allows you to pass in package-level flags into the
binary and test package to run.
For example, the glog logging packa
Btw, I have to make a correction to my previous post (see below). This
init() doesn't seem to take effect all the time (or at all in some
projects). I also tried putting them into TestMain instead inside of my
test files with the same "doesn't always work" result (most of the time, it
does no