(t *testing.T)
| 33 | } |
| 34 | |
| 35 | func TestMemoryStore_GetRequest_NotFound(t *testing.T) { |
| 36 | st := NewMemoryStore() |
| 37 | _, err := st.GetRequest(context.Background(), "missing") |
| 38 | if err != ErrNotFound { |
| 39 | t.Fatalf("err=%v", err) |
| 40 | } |
| 41 | } |
nothing calls this directly
no test coverage detected