(self)
| 76 | self._errors.append("%s [%s] [%d]" % (message, category, confidence)) |
| 77 | |
| 78 | def Results(self): |
| 79 | if len(self._errors) < 2: |
| 80 | return "".join(self._errors) # Most tests expect to have a string. |
| 81 | return self._errors # Let's give a list if there is more than one. |
| 82 | |
| 83 | def ResultList(self): |
| 84 | return self._errors |
no outgoing calls
no test coverage detected