(t *testing.T)
| 5138 | } |
| 5139 | |
| 5140 | func TestHistogramStaleSample(t *testing.T) { |
| 5141 | t.Run("integer histogram", func(t *testing.T) { |
| 5142 | testHistogramStaleSampleHelper(t, false) |
| 5143 | }) |
| 5144 | t.Run("float histogram", func(t *testing.T) { |
| 5145 | testHistogramStaleSampleHelper(t, true) |
| 5146 | }) |
| 5147 | } |
| 5148 | |
| 5149 | func testHistogramStaleSampleHelper(t *testing.T, floatHistogram bool) { |
| 5150 | t.Helper() |
nothing calls this directly
no test coverage detected
searching dependent graphs…