(t *testing.T)
| 7 | ) |
| 8 | |
| 9 | func TestDisableDebugMessages(t *testing.T) { |
| 10 | pterm.PrintDebugMessages = true |
| 11 | pterm.DisableDebugMessages() |
| 12 | testza.AssertFalse(t, pterm.PrintDebugMessages) |
| 13 | } |
| 14 | |
| 15 | func TestEnableDebugMessages(t *testing.T) { |
| 16 | pterm.EnableDebugMessages() |
nothing calls this directly
no test coverage detected
searching dependent graphs…