FirstWindowStartReader is an optional extension implemented by proxies that can report the earliest test window start observed by their underlying MockManager. Consumed by the agent's tier-aware strictMockWindow filter to distinguish startup-init mocks (req_ts < firstWindowStart) from stale previous
| 116 | // fails — keeps third-party Proxy implementations compiling without |
| 117 | // the extra method. |
| 118 | type FirstWindowStartReader interface { |
| 119 | FirstTestWindowStart() time.Time |
| 120 | } |
| 121 | |
| 122 | type IncomingProxy interface { |
| 123 | Start(ctx context.Context, opts models.IncomingOptions) chan *models.TestCase |
no outgoing calls
no test coverage detected