Method
RecordInterception
(_ context.Context, req *recorder.InterceptionRecord)
Source from the content-addressed store, hash-verified
| 27 | } |
| 28 | |
| 29 | func (m *MockRecorder) RecordInterception(_ context.Context, req *recorder.InterceptionRecord) error { |
| 30 | m.mu.Lock() |
| 31 | defer m.mu.Unlock() |
| 32 | m.interceptions = append(m.interceptions, req) |
| 33 | return nil |
| 34 | } |
| 35 | |
| 36 | func (m *MockRecorder) RecordInterceptionEnded(_ context.Context, req *recorder.InterceptionRecordEnded) error { |
| 37 | m.mu.Lock() |
Callers
nothing calls this directly
Tested by
no test coverage detected