| 61 | } |
| 62 | |
| 63 | type Report struct { |
| 64 | Timestamp time.Time `json:"timestamp"` |
| 65 | TestSuite string `json:"test_suite"` |
| 66 | Results []TestResult `json:"results"` |
| 67 | TotalTests int `json:"total_tests"` |
| 68 | PassedTests int `json:"passed_tests"` |
| 69 | FailedTests int `json:"failed_tests"` |
| 70 | AverageTime time.Duration `json:"average_time"` |
| 71 | } |
nothing calls this directly
no outgoing calls
no test coverage detected