(t *testing.T)
| 62 | } |
| 63 | |
| 64 | func TestWrapModel_NilModel(t *testing.T) { |
| 65 | t.Parallel() |
| 66 | |
| 67 | require.Panics(t, func() { |
| 68 | WrapModel(nil, &Service{}, RecorderOptions{}) |
| 69 | }) |
| 70 | } |
| 71 | |
| 72 | func TestWrapModel_NilService(t *testing.T) { |
| 73 | t.Parallel() |
nothing calls this directly
no test coverage detected