pterm.Sprint functions
(t *testing.T)
| 15 | // pterm.Sprint functions |
| 16 | |
| 17 | func TestSprint(t *testing.T) { |
| 18 | for _, randomString := range internal.RandomStrings { |
| 19 | testza.AssertEqual(t, randomString, pterm.Sprint(randomString)) |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | func TestSprintf(t *testing.T) { |
| 24 | for _, randomString := range internal.RandomStrings { |
nothing calls this directly
no test coverage detected
searching dependent graphs…