package main import ( "os" "testing" ) func BenchmarkMain(b *testing.B) { os.Stdout, _ = os.Open(os.DevNull) main() }