TestRunner orchestrates the execution of test suites using the agent loop
| 14 | |
| 15 | // TestRunner orchestrates the execution of test suites using the agent loop |
| 16 | type TestRunner struct { |
| 17 | openaiService *OpenAIService |
| 18 | results []models.AgentTestResult |
| 19 | mutex sync.Mutex |
| 20 | defaultModel string |
| 21 | logger *RequestLogger |
| 22 | } |
| 23 | |
| 24 | // NewTestRunner creates a new test runner instance |
| 25 | func NewTestRunner(apiKey, baseURL, defaultModel string) *TestRunner { |
nothing calls this directly
no outgoing calls
no test coverage detected