(fields []string)
| 30 | } |
| 31 | |
| 32 | func (ch *check) ExportData(fields []string) map[string]interface{} { |
| 33 | return cmdutil.StructExportData(ch, fields) |
| 34 | } |
| 35 | |
| 36 | func aggregateChecks(checkContexts []api.CheckContext, requiredChecks bool) (checks []check, counts checkCounts) { |
| 37 | for _, c := range eliminateDuplicates(checkContexts) { |
nothing calls this directly
no test coverage detected