DebugClients/Python3/DCTestResult.py

changeset 3591
2f2a4a76dd22
parent 3160
209a07d7e401
child 3670
f0cb7579c0b4
--- a/DebugClients/Python3/DCTestResult.py	Sat May 17 19:58:49 2014 +0200
+++ b/DebugClients/Python3/DCTestResult.py	Sun May 18 14:13:09 2014 +0200
@@ -33,7 +33,7 @@
         
     def addFailure(self, test, err):
         """
-        Method called if a test failed.
+        Public method called if a test failed.
         
         @param test Reference to the test object
         @param err The error traceback
@@ -46,7 +46,7 @@
         
     def addError(self, test, err):
         """
-        Method called if a test errored.
+        Public method called if a test errored.
         
         @param test Reference to the test object
         @param err The error traceback
@@ -59,7 +59,7 @@
         
     def addSkip(self, test, reason):
         """
-        Method called if a test was skipped.
+        Public method called if a test was skipped.
         
         @param test reference to the test object
         @param reason reason for skipping the test (string)
@@ -71,7 +71,7 @@
         
     def addExpectedFailure(self, test, err):
         """
-        Method called if a test failed expected.
+        Public method called if a test failed expected.
         
         @param test reference to the test object
         @param err error traceback
@@ -84,7 +84,7 @@
         
     def addUnexpectedSuccess(self, test):
         """
-        Method called if a test succeeded expectedly.
+        Public method called if a test succeeded expectedly.
         
         @param test reference to the test object
         """
@@ -95,7 +95,7 @@
         
     def startTest(self, test):
         """
-        Method called at the start of a test.
+        Public method called at the start of a test.
         
         @param test Reference to the test object
         """
@@ -106,7 +106,7 @@
 
     def stopTest(self, test):
         """
-        Method called at the end of a test.
+        Public method called at the end of a test.
         
         @param test Reference to the test object
         """

eric ide

mercurial