(self, text="")
| 68 | def SetExport(self, export): |
| 69 | self.Export = export |
| 70 | def Print(self, text=""): |
| 71 | rtext = text |
| 72 | if test_from_ctest: |
| 73 | rtext = rtext.replace("<", "<") |
| 74 | rtext = rtext.replace(">", ">") |
| 75 | print(rtext) |
| 76 | def Error(self, error): |
| 77 | self.ErrorValue = 1 |
| 78 | self.Errors[error] = 1 |
no test coverage detected