(lines, name)
| 26 | return True |
| 27 | |
| 28 | def appendName(lines, name): |
| 29 | test = re.compile("^[a-zA-z0-9]+ = ") |
| 30 | |
| 31 | for i, line in enumerate(lines): |
| 32 | if test.match(line): |
| 33 | lines[i] = name+"."+line |
| 34 | |
| 35 | return lines |
| 36 | |
| 37 | def initReport(): |
| 38 | reports = [] |
no test coverage detected