(t *testing.T)
| 21 | } |
| 22 | |
| 23 | func TestSprintf(t *testing.T) { |
| 24 | for _, randomString := range internal.RandomStrings { |
| 25 | testza.AssertEqual(t, randomString, pterm.Sprintf("%s", randomString)) |
| 26 | } |
| 27 | testza.AssertEqual(t, "Hello, World!", pterm.Sprintf("Hello, %s!", "World")) |
| 28 | } |
| 29 | |
| 30 | func TestSprintfln(t *testing.T) { |
| 31 | for _, randomString := range internal.RandomStrings { |
nothing calls this directly
no test coverage detected
searching dependent graphs…