14:092aa8fafa4e | 15:f6ccc31d6e72 |
---|---|
2 | 2 |
3 # Copyright (c) 2003 - 2010 Detlev Offenbach <detlev@die-offenbachs.de> | 3 # Copyright (c) 2003 - 2010 Detlev Offenbach <detlev@die-offenbachs.de> |
4 # | 4 # |
5 | 5 |
6 """ | 6 """ |
7 Module implementing a TestResult derivative for the eric4 debugger. | 7 Module implementing a TestResult derivative for the eric5 debugger. |
8 """ | 8 """ |
9 | 9 |
10 import select | 10 import select |
11 import traceback | 11 import traceback |
12 from unittest import TestResult | 12 from unittest import TestResult |
15 from DebugProtocol import * | 15 from DebugProtocol import * |
16 | 16 |
17 | 17 |
18 class DCTestResult(TestResult): | 18 class DCTestResult(TestResult): |
19 """ | 19 """ |
20 A TestResult derivative to work with eric4's debug client. | 20 A TestResult derivative to work with eric5's debug client. |
21 | 21 |
22 For more details see unittest.py of the standard python distribution. | 22 For more details see unittest.py of the standard python distribution. |
23 """ | 23 """ |
24 def __init__(self, parent): | 24 def __init__(self, parent): |
25 """ | 25 """ |