(buf []byte)
| 108 | type NopWriter struct{} |
| 109 | |
| 110 | func (*NopWriter) Write(buf []byte) (int, error) { |
| 111 | return len(buf), nil |
| 112 | } |
| 113 | |
| 114 | func BenchmarkMarshalJSONNativeReuse(b *testing.B) { |
| 115 | record := newLogFFRecord() |
no outgoing calls
no test coverage detected