(t *testing.T)
| 57 | } |
| 58 | |
| 59 | func (c *FormatBytesUnitTestCase) Assert(t *testing.T) { |
| 60 | assert.Equal(t, c.Expected, humanize.FormatBytesUnit(c.Given, c.Unit)) |
| 61 | } |
| 62 | |
| 63 | type FormatByteRateTestCase struct { |
| 64 | Given uint64 |
nothing calls this directly
no test coverage detected