def _run_one(self, result):
     """Run one test reporting to result.
     :param result: A testtools.TestResult to report activity to.
         This result object is decorated with an ExtendedToOriginalDecorator
         to ensure that the latest TestResult API can be used with
         confidence by client code.
     :return: The result object the test was run against.
     """
     return self._run_prepared_result(ExtendedToOriginalDecorator(result))
Exemple #2
0
 def _result(self, result):
     if result is None:
         return TestResult()
     else:
         return ExtendedToOriginalDecorator(result)