(t *testing.T)
| 953 | } |
| 954 | |
| 955 | func TestAddError_NotFound(t *testing.T) { |
| 956 | t.Parallel() |
| 957 | |
| 958 | store := NewInMemorySessionStore() |
| 959 | err := store.AddError(t.Context(), "missing", &Error{Message: "boom"}) |
| 960 | require.ErrorIs(t, err, ErrNotFound) |
| 961 | } |
| 962 | |
| 963 | func TestIsRelativeSessionRef(t *testing.T) { |
| 964 | t.Parallel() |
nothing calls this directly
no test coverage detected