| 30 | } |
| 31 | |
| 32 | type defaultResultTracker struct { |
| 33 | minSucceeded int |
| 34 | numSucceeded int |
| 35 | numErrors int |
| 36 | maxErrors int |
| 37 | results []any |
| 38 | numInstances int |
| 39 | errors []error |
| 40 | } |
| 41 | |
| 42 | func newDefaultResultTracker(instances []InstanceDesc, maxErrors int) *defaultResultTracker { |
| 43 | return &defaultResultTracker{ |
nothing calls this directly
no outgoing calls
no test coverage detected