(target)
| 120 | engine._scan_history = deque(maxlen=100) |
| 121 | |
| 122 | def ok_runner(target): |
| 123 | return ReconResult(recon_type=ReconType.TLS_AUDIT, target=target, status="ok") |
| 124 | |
| 125 | def failing_runner(target): |
| 126 | raise RuntimeError("simulated failure") |
nothing calls this directly
no test coverage detected