(t *testing.T)
| 15 | var prefixPrinters = []pterm.PrefixPrinter{pterm.Info, pterm.Success, pterm.Warning, pterm.Error, *pterm.Fatal.WithFatal(false)} |
| 16 | |
| 17 | func TestPrefixPrinterNilPrint(t *testing.T) { |
| 18 | proxyToDevNull() |
| 19 | p := pterm.PrefixPrinter{} |
| 20 | p.Println("Hello, World!") |
| 21 | } |
| 22 | |
| 23 | func TestPrefixPrinterPrintMethods(t *testing.T) { |
| 24 | for _, p := range prefixPrinters { |
nothing calls this directly
no test coverage detected
searching dependent graphs…