(b *testing.B)
| 38 | } |
| 39 | |
| 40 | func BenchmarkWriteVarint63(b *testing.B) { |
| 41 | n := uint64(math.MaxInt64) |
| 42 | for i := 0; i < b.N; i++ { |
| 43 | WriteVarint63(ioutil.Discard, n) |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | func TestVarint31(t *testing.T) { |
| 48 | cases := []struct { |
nothing calls this directly
no test coverage detected