| 20 | ) |
| 21 | |
| 22 | type TestReport struct { |
| 23 | tests map[string]map[string][]models.TestResult |
| 24 | m sync.Mutex |
| 25 | Logger *zap.Logger |
| 26 | Path string |
| 27 | Name string |
| 28 | Format yaml.Format |
| 29 | } |
| 30 | |
| 31 | func New(logger *zap.Logger, reportPath string) *TestReport { |
| 32 | return NewWithFormat(logger, reportPath, yaml.FormatYAML) |
nothing calls this directly
no outgoing calls
no test coverage detected