(t *testing.T)
| 128 | } |
| 129 | |
| 130 | func TestAppendNil(t *testing.T) { |
| 131 | var bts []byte |
| 132 | bts = AppendNil(bts[0:0]) |
| 133 | if bts[0] != mnil { |
| 134 | t.Fatal("bts[0] is not 'nil'") |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | func TestAppendFloat(t *testing.T) { |
| 139 | rng := rand.New(rand.NewSource(0)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…