You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
606 B
30 lines
606 B
package policy |
|
|
|
import ( |
|
"io" |
|
"os" |
|
"testing" |
|
|
|
"lol.mleku.dev" |
|
"lol.mleku.dev/log" |
|
) |
|
|
|
func TestMain(m *testing.M) { |
|
// Disable all logging during tests unless explicitly enabled |
|
if os.Getenv("TEST_LOG") == "" { |
|
// Set log level to Off to suppress all logs |
|
lol.SetLogLevel("off") |
|
// Also redirect output to discard |
|
lol.Writer = io.Discard |
|
// Disable all log printers |
|
log.T = lol.GetNullPrinter() |
|
log.D = lol.GetNullPrinter() |
|
log.I = lol.GetNullPrinter() |
|
log.W = lol.GetNullPrinter() |
|
log.E = lol.GetNullPrinter() |
|
log.F = lol.GetNullPrinter() |
|
} |
|
|
|
// Run tests |
|
os.Exit(m.Run()) |
|
}
|
|
|