(t *testing.T)
| 60 | } |
| 61 | |
| 62 | func TestWrappedRecordGetWithInvalidIndex(t *testing.T) { |
| 63 | assertPanic(t, "access to an invalid index should panic", func() { |
| 64 | WrapRecord(&testRecord).Get(666) |
| 65 | }) |
| 66 | } |
| 67 | |
| 68 | func TestWrappedRecordMeta(t *testing.T) { |
| 69 | r := WrapRecord(&testRecord) |
nothing calls this directly
no test coverage detected