(t *testing.T)
| 92 | } |
| 93 | |
| 94 | func TestNewPartialRanges5(t *testing.T) { |
| 95 | var r = caches.NewPartialRanges(0) |
| 96 | for j := 0; j < 1000; j++ { |
| 97 | r.Add(int64(j), int64(j+100)) |
| 98 | } |
| 99 | logs.PrintAsJSON(r.Ranges, t) |
| 100 | } |
| 101 | |
| 102 | func TestNewPartialRanges_Nearest(t *testing.T) { |
| 103 | { |
nothing calls this directly
no test coverage detected