(t *testing.T)
| 120 | } |
| 121 | |
| 122 | func TestNewLoopWithWorkDir_EmptyWorkDir(t *testing.T) { |
| 123 | l := NewLoopWithWorkDir("/path/to/prd.json", "", "test prompt", 5, testProvider) |
| 124 | |
| 125 | if l.workDir != "" { |
| 126 | t.Errorf("Expected empty workDir, got %q", l.workDir) |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | func TestLoop_Events(t *testing.T) { |
| 131 | l := NewLoop("/path/to/prd.json", "test prompt", 5, testProvider) |
nothing calls this directly
no test coverage detected