1276 Private slot to show the output of the most recent test run. |
1276 Private slot to show the output of the most recent test run. |
1277 """ |
1277 """ |
1278 from eric7.EricWidgets.EricPlainTextDialog import EricPlainTextDialog |
1278 from eric7.EricWidgets.EricPlainTextDialog import EricPlainTextDialog |
1279 |
1279 |
1280 dlg = EricPlainTextDialog( |
1280 dlg = EricPlainTextDialog( |
1281 title=self.tr("Test Run Output"), text=self.__recentLog |
1281 title=self.tr("Test Run Output"), text=self.__recentLog, parent=self |
1282 ) |
1282 ) |
1283 dlg.exec() |
1283 dlg.exec() |
1284 |
1284 |
1285 @pyqtSlot(str) |
1285 @pyqtSlot(str) |
1286 def __setStatusLabel(self, statusText): |
1286 def __setStatusLabel(self, statusText): |