(t *testing.T, result interface{})
| 85 | } |
| 86 | |
| 87 | func assertNotRejected(t *testing.T, result interface{}) { |
| 88 | r, ok := result.(*ChannelMapperOutput) |
| 89 | assert.True(t, ok) |
| 90 | assert.NoError(t, r.Rejection) |
| 91 | } |
no outgoing calls
no test coverage detected