(b *testing.B)
| 106 | } |
| 107 | |
| 108 | func BenchmarkBytesConvBytesToStr(b *testing.B) { |
| 109 | for b.Loop() { |
| 110 | BytesToString(testBytes) |
| 111 | } |
| 112 | } |
| 113 | |
| 114 | func BenchmarkBytesConvStrToBytesRaw(b *testing.B) { |
| 115 | for b.Loop() { |
nothing calls this directly
no test coverage detected