(b *testing.B)
| 321 | } |
| 322 | |
| 323 | func BenchmarkWriteInt64(b *testing.B) { |
| 324 | wr := NewWriter(Nowhere) |
| 325 | b.SetBytes(9) |
| 326 | b.ReportAllocs() |
| 327 | b.ResetTimer() |
| 328 | for i := 0; i < b.N; i++ { |
| 329 | wr.WriteInt64(tint64) |
| 330 | } |
| 331 | } |
| 332 | |
| 333 | func TestWriteUint64(t *testing.T) { |
| 334 | var buf bytes.Buffer |
nothing calls this directly
no test coverage detected
searching dependent graphs…