(t *testing.T)
| 37 | } |
| 38 | |
| 39 | func TestContextBuilder_EmptyFiles(t *testing.T) { |
| 40 | bl := NewBootstrapLoader(t.TempDir(), t.TempDir(), testLogger()) |
| 41 | ms := NewMemoryStore(t.TempDir(), testLogger()) |
| 42 | cb := NewContextBuilder(bl, ms, t.TempDir()) |
| 43 | |
| 44 | result := cb.BuildSystemPromptPrefix() |
| 45 | if result != "" { |
| 46 | t.Errorf("expected empty result for missing files, got %q", result) |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | func TestContextBuilder_Cache(t *testing.T) { |
| 51 | wsDir := t.TempDir() |
nothing calls this directly
no test coverage detected