(t *testing.T)
| 10 | ) |
| 11 | |
| 12 | func newTestCLIWithMemory(t *testing.T) *ChatCLI { |
| 13 | t.Helper() |
| 14 | ms := workspace.NewMemoryStore(t.TempDir(), zap.NewNop()) |
| 15 | return &ChatCLI{memoryStore: ms} |
| 16 | } |
| 17 | |
| 18 | func TestMemoryPluginAdapter(t *testing.T) { |
| 19 | cli := newTestCLIWithMemory(t) |
no test coverage detected