PyUnit/UnittestDialog.py

changeset 3591
2f2a4a76dd22
parent 3484
645c12de6b0c
child 3621
15f23ed3f216
--- a/PyUnit/UnittestDialog.py	Sat May 17 19:58:49 2014 +0200
+++ b/PyUnit/UnittestDialog.py	Sun May 18 14:13:09 2014 +0200
@@ -249,7 +249,7 @@
     @pyqtSlot()
     def on_startButton_clicked(self, failedOnly=False):
         """
-        Public slot to start the test.
+        Private slot to start the test.
         
         @keyparam failedOnly flag indicating to run only failed tests (boolean)
         """
@@ -687,7 +687,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 error traceback
@@ -698,7 +698,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 error traceback
@@ -709,7 +709,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)
@@ -719,7 +719,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
@@ -730,7 +730,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
         """
@@ -739,7 +739,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
         """
@@ -748,7 +748,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