(mutant)
| 35 | |
| 36 | |
| 37 | def renderMutantAttrs(mutant): |
| 38 | mutatedAttrs = {} |
| 39 | for attrID, mutator in mutant.mutators.items(): |
| 40 | attrName = getAttributeInfo(attrID).name |
| 41 | mutatedAttrs[attrName] = mutator.value |
| 42 | return ', '.join( |
| 43 | '{} {}'.format(a, floatUnerr(mutatedAttrs[a])) |
| 44 | for a in sorted(mutatedAttrs)) |
| 45 | |
| 46 | |
| 47 | def parseMutant(lines): |
no test coverage detected