Trim test name. Trailing underscore and digits are removed
(name)
| 171 | |
| 172 | |
| 173 | def trimname(name): |
| 174 | """Trim test name. Trailing underscore and digits are removed""" |
| 175 | while name[-1].isdigit(): |
| 176 | name = name[:-1] |
| 177 | if name[-1] == '_': |
| 178 | name = name[:-1] |
| 179 | return name |
| 180 | |
| 181 | |
| 182 | def writeHtmlFile(nodes, functionName, filename, errorsOnly): |
no outgoing calls
no test coverage detected