(_ context.Context, req any)
| 81 | } |
| 82 | |
| 83 | func handler(_ context.Context, req any) (any, error) { |
| 84 | res := req.(interface{ getResult() *testSubject }).getResult() |
| 85 | res.handlerCalled = true |
| 86 | return res, nil |
| 87 | } |
| 88 | |
| 89 | func TestUnaryServerInterceptor(t *testing.T) { |
| 90 | a := assertions.New(t) |
no test coverage detected