(t *testing.T)
| 31 | } |
| 32 | |
| 33 | func (c *FormatBytesTestCase) Assert(t *testing.T) { |
| 34 | assert.Equal(t, c.Expected, humanize.FormatBytes(c.Given)) |
| 35 | } |
| 36 | |
| 37 | type ParseByteUnitTestCase struct { |
| 38 | Given string |
nothing calls this directly
no test coverage detected