(c *C)
| 51 | } |
| 52 | |
| 53 | func (s *BinarySuite) TestWriteVariableWidthIntShort(c *C) { |
| 54 | buf := bytes.NewBuffer(nil) |
| 55 | |
| 56 | err := WriteVariableWidthInt(buf, 19) |
| 57 | c.Assert(err, IsNil) |
| 58 | c.Assert(buf.Bytes(), DeepEquals, []byte{19}) |
| 59 | } |
nothing calls this directly
no test coverage detected