(t *testing.T)
| 119 | } |
| 120 | |
| 121 | func TestLimits64(t *testing.T) { |
| 122 | assert := assert.New(t) |
| 123 | |
| 124 | c := counts.NewCount64(0xffffffffffffffff) |
| 125 | number, unit := counts.Metric.Format(c, "B") |
| 126 | assert.Equalf("∞", number, "Number for Count64(0xffffffffffffffff) in metric") |
| 127 | assert.Equalf("B", unit, "Unit for Count64(0xffffffffffffffff) in metric") |
| 128 | } |
nothing calls this directly
no test coverage detected