--- a/DebugClients/Python/DCTestResult.py Sat May 17 19:58:49 2014 +0200 +++ b/DebugClients/Python/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 @@ -47,7 +47,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 @@ -61,7 +61,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) @@ -74,7 +74,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 @@ -88,7 +88,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 """ @@ -100,7 +100,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 """ @@ -112,7 +112,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 """