| 5751 | } |
| 5752 | |
| 5753 | type mockContextAwareStorage struct { |
| 5754 | t *testing.T |
| 5755 | key any |
| 5756 | expectedValue any |
| 5757 | validateCtx func(context.Context) |
| 5758 | cancel context.CancelFunc |
| 5759 | ctxMatched atomic.Bool |
| 5760 | cancelObserved atomic.Bool |
| 5761 | } |
| 5762 | |
| 5763 | func (s *mockContextAwareStorage) helperFailure(msg string, args ...any) { |
| 5764 | s.t.Helper() |
nothing calls this directly
no outgoing calls
no test coverage detected