(b *testing.B)
| 680 | } |
| 681 | |
| 682 | func BenchmarkReadTimeBytes(b *testing.B) { |
| 683 | data := AppendTime(nil, time.Now()) |
| 684 | b.SetBytes(15) |
| 685 | b.ReportAllocs() |
| 686 | b.ResetTimer() |
| 687 | for i := 0; i < b.N; i++ { |
| 688 | ReadTimeBytes(data) |
| 689 | } |
| 690 | } |
| 691 | |
| 692 | func TestReadIntfBytes(t *testing.T) { |
| 693 | var buf bytes.Buffer |
nothing calls this directly
no test coverage detected
searching dependent graphs…