eric6/DebugClients/Python/DCTestResult.py

branch
maintenance
changeset 8043
0acf98cd089a
parent 7960
e8fc383322f7
child 8543
29d7b90ede28
equal deleted inserted replaced
7991:866adc8c315b 8043:0acf98cd089a
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 """

eric ide

mercurial