(t *testing.T)
| 114 | } |
| 115 | |
| 116 | func TestGetMemoryContext_Empty(t *testing.T) { |
| 117 | ms := NewMemoryStore(t.TempDir(), testLogger()) |
| 118 | ctx := ms.GetMemoryContext() |
| 119 | if ctx != "" { |
| 120 | t.Errorf("expected empty context, got %q", ctx) |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | func TestEnsureDirectories(t *testing.T) { |
| 125 | dir := t.TempDir() |
nothing calls this directly
no test coverage detected