(t *testing.T)
| 26 | } |
| 27 | |
| 28 | func TestWrapRecordWithNil(t *testing.T) { |
| 29 | wrapped := WrapRecord(nil) |
| 30 | if !wrapped.IsNull() { |
| 31 | t.Fatal("expected null wrapped") |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | func TestWrappedRecordIs(t *testing.T) { |
| 36 | a := WrapRecord(&testRecord) |
nothing calls this directly
no test coverage detected