(b *testing.B)
| 19 | } |
| 20 | |
| 21 | func BenchmarkRenderCode_UserPattern(b *testing.B) { |
| 22 | for i := 0; i < b.N; i++ { |
| 23 | RenderCode("32", strconv.Itoa(i)+". ", "test") |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | func BenchmarkColorRender_SingleString(b *testing.B) { |
| 28 | yellow := FgGreen.Render |
nothing calls this directly
no test coverage detected
searching dependent graphs…