AgentReport contains the results of an agent test suite
| 106 | |
| 107 | // AgentReport contains the results of an agent test suite |
| 108 | type AgentReport struct { |
| 109 | Timestamp time.Time `json:"timestamp"` |
| 110 | TestSuite string `json:"test_suite"` |
| 111 | Results []AgentTestResult `json:"results"` |
| 112 | TotalTests int `json:"total_tests"` |
| 113 | PassedTests int `json:"passed_tests"` |
| 114 | FailedTests int `json:"failed_tests"` |
| 115 | AverageTime time.Duration `json:"average_time"` |
| 116 | TotalLLMRequests int `json:"total_llm_requests"` |
| 117 | TotalLLMTime time.Duration `json:"total_llm_time"` |
| 118 | AvgTimePerReq time.Duration `json:"avg_time_per_request"` |
| 119 | } |
nothing calls this directly
no outgoing calls
no test coverage detected