DebugClients/Python/DCTestResult.py

branch
maintenance
changeset 6923
d062df8f1d9f
parent 6904
3f35037a08d4
diff -r 14680839ad7a -r d062df8f1d9f DebugClients/Python/DCTestResult.py
--- a/DebugClients/Python/DCTestResult.py	Sat Mar 02 11:17:15 2019 +0100
+++ b/DebugClients/Python/DCTestResult.py	Fri Apr 05 19:06:39 2019 +0200
@@ -17,15 +17,18 @@
     
     For more details see unittest.py of the standard python distribution.
     """
-    def __init__(self, dbgClient):
+    def __init__(self, dbgClient, failfast):
         """
         Constructor
         
         @param dbgClient reference to the debug client
         @type DebugClientBase
+        @param failfast flag indicating to stop at the first error
+        @type bool
         """
         TestResult.__init__(self)
         self.__dbgClient = dbgClient
+        self.failfast = failfast
         
     def addFailure(self, test, err):
         """

eric ide

mercurial