tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

test_result.py (1023B)


      1 # Copyright 2012 The Chromium Authors
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 
      6 from pylib.base import base_test_result
      7 
      8 
      9 
     10 class InstrumentationTestResult(base_test_result.BaseTestResult):
     11  """Result information for a single instrumentation test."""
     12 
     13  def __init__(self, full_name, test_type, dur, log=''):
     14    """Construct an InstrumentationTestResult object.
     15 
     16    Args:
     17      full_name: Full name of the test.
     18      test_type: Type of the test result as defined in ResultType.
     19      dur: Duration of the test run in milliseconds.
     20      log: A string listing any errors.
     21    """
     22    super().__init__(full_name, test_type, dur, log)
     23    name_pieces = full_name.rsplit('#')
     24    if len(name_pieces) > 1:
     25      self._test_name = name_pieces[1]
     26      self._class_name = name_pieces[0]
     27    else:
     28      self._class_name = full_name
     29      self._test_name = full_name
     30 
     31  def SetDuration(self, duration):
     32    """Set the test duration."""
     33    self._duration = duration