(c *C)
| 16 | var _ = Suite(&NumericFieldsSuite{}) |
| 17 | |
| 18 | func (s *NumericFieldsSuite) TestTinyBasic(c *C) { |
| 19 | t := NewTinyFieldDescriptor(true) |
| 20 | c.Check(t.IsNullable(), IsTrue) |
| 21 | c.Check(t.Type(), Equals, mysql_proto.FieldType_TINY) |
| 22 | } |
| 23 | |
| 24 | func (s *NumericFieldsSuite) TestTinyParseValue(c *C) { |
| 25 | t := NewTinyFieldDescriptor(true) |
nothing calls this directly
no test coverage detected