Example #1
0
 def __init__(self, name, result, **params):
     '''
     Initializes the channel and ties it with provided ResultChannelHelper
     instance.
     '''
     TestResultChannel.__init__(self, name, **params)
     self._result = result
 def __init__(self, name, progress, **params):
     '''
     Initializes the channel and ties it with provided ProgressChannelHelper
     instance.
     '''
     TestResultChannel.__init__(self, name, **params)
     self._progress = progress
Example #3
0
 def __init__(self, name, result, **params):
     '''
     Initializes the channel and ties it with provided ResultChannelHelper
     instance.
     '''
     TestResultChannel.__init__(self, name, **params)
     self._result = result
Example #4
0
 def __init__(self, name, progress, **params):
     '''
     Initializes the channel and ties it with provided ProgressChannelHelper
     instance.
     '''
     TestResultChannel.__init__(self, name, **params)
     self._progress = progress
Example #5
0
 def __init__(self, name, console, **params):
     TestResultChannel.__init__(self, name, **params)
     self._console = console
Example #6
0
 def __init__(self, name, enabled=True, verbose=False, **params):
     TestResultChannel.__init__(self, name, enabled, verbose, **params)
     self._counters = {}
 def __init__(self, name, stream=None, encoding=None, **params):
     TestResultChannel.__init__(self, name, **params)
     self._stream = stream or sys.stderr
     self._encoding = encoding or getattr(self._stream, "encoding", None)
Example #8
0
 def __init__(self, name, enabled=True, verbose=False, **params):
     TestResultChannel.__init__(self, name, enabled, verbose, **params)
     self._counters = {}