I\'m running a test in Go with a statement to print something (i.e. for debugging of tests) but it\'s not printing anything.
func TestPrintSomething(t *testi
For testing sometimes I do
fmt.Fprintln(os.Stdout, "hello")
Also, you can print to:
fmt.Fprintln(os.Stderr, "hello)