(t *testing.T)
| 65 | } |
| 66 | |
| 67 | func TestRemoveColorFromString(t *testing.T) { |
| 68 | for _, randomString := range internal.RandomStrings { |
| 69 | testString := pterm.Cyan(randomString) |
| 70 | testza.AssertEqual(t, randomString, pterm.RemoveColorFromString(testString)) |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | func TestColorPrinterPrintMethods(t *testing.T) { |
| 75 | p := pterm.Color(16) |
nothing calls this directly
no test coverage detected
searching dependent graphs…