2 |
2 |
3 # Copyright (c) 2003 - 2021 Detlev Offenbach <detlev@die-offenbachs.de> |
3 # Copyright (c) 2003 - 2021 Detlev Offenbach <detlev@die-offenbachs.de> |
4 # |
4 # |
5 |
5 |
6 """ |
6 """ |
7 Module implementing a TestResult derivative for the eric6 debugger. |
7 Module implementing a TestResult derivative for the eric debugger. |
8 """ |
8 """ |
9 |
9 |
10 import select |
10 import select |
11 from unittest import TestResult |
11 from unittest import TestResult |
12 |
12 |
13 |
13 |
14 class DCTestResult(TestResult): |
14 class DCTestResult(TestResult): |
15 """ |
15 """ |
16 A TestResult derivative to work with eric6's debug client. |
16 A TestResult derivative to work with eric's debug client. |
17 |
17 |
18 For more details see unittest.py of the standard python distribution. |
18 For more details see unittest.py of the standard python distribution. |
19 """ |
19 """ |
20 def __init__(self, dbgClient, failfast): |
20 def __init__(self, dbgClient, failfast): |
21 """ |
21 """ |