(self)
| 56 | self.mutants = {} |
| 57 | |
| 58 | def formatMutants(self): |
| 59 | mutationLines = [] |
| 60 | if self.mutants: |
| 61 | for mutantReference in sorted(self.mutants): |
| 62 | mutant = self.mutants[mutantReference] |
| 63 | mutationLines.append(renderMutant(mutant, firstPrefix='[{}] '.format(mutantReference), prefix=' ')) |
| 64 | return '\n'.join(mutationLines) |
| 65 | |
| 66 | |
| 67 | def exportEft(fit, options, callback): |
no test coverage detected