(t *testing.T)
| 26 | } |
| 27 | |
| 28 | func TestClaudeProvider_LogFileName(t *testing.T) { |
| 29 | p := NewClaudeProvider("") |
| 30 | if p.LogFileName() != "claude.log" { |
| 31 | t.Errorf("LogFileName() = %q, want claude.log", p.LogFileName()) |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | func TestClaudeProvider_LoopCommand(t *testing.T) { |
| 36 | ctx := context.Background() |
nothing calls this directly
no test coverage detected