String implements the String method for Benchmark
()
| 116 | |
| 117 | // String implements the String method for Benchmark |
| 118 | func (bm *Benchmark) String() string { |
| 119 | var sb strings.Builder |
| 120 | bm.debugString(&sb, "") |
| 121 | return sb.String() |
| 122 | } |
| 123 | |
| 124 | // debugString writes debug information to the given string builder with the |
| 125 | // given prefix. |
nothing calls this directly
no test coverage detected