HomeSort by relevance Sort by last modified time
    Searched refs:addSkip (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/tools/telemetry/telemetry/page/
gtest_test_results.py 62 def addSkip(self, test, reason):
63 super(GTestTestResults, self).addSkip(test, reason)
page_test_results.py 32 def addSkip(self, test, reason): # Python 2.7 has this in unittest.TestResult
52 def AddSkip(self, page, reason):
53 self.addSkip(page.display_name, reason)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
support.py 78 def addSkip(self, *args):
79 self._events.append('addSkip')
80 super(LoggingResult, self).addSkip(*args)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
support.py 78 def addSkip(self, *args):
79 self._events.append('addSkip')
80 super(LoggingResult, self).addSkip(*args)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/unittest2/
suite.py 184 addSkip = getattr(result, 'addSkip', None)
185 if addSkip is not None and isinstance(exception, case.SkipTest):
186 addSkip(error, str(exception))
runner.py 87 def addSkip(self, test, reason):
88 super(TextTestResult, self).addSkip(test, reason)
result.py 122 def addSkip(self, test, reason):
case.py 299 addSkip = getattr(result, 'addSkip', None)
300 if addSkip is not None:
301 addSkip(self, reason)
303 warnings.warn("Use of a TestResult without an addSkip method is deprecated",
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
suite.py 194 addSkip = getattr(result, 'addSkip', None)
195 if addSkip is not None and isinstance(exception, case.SkipTest):
196 addSkip(error, str(exception))
runner.py 81 def addSkip(self, test, reason):
82 super(TextTestResult, self).addSkip(test, reason)
result.py 130 def addSkip(self, test, reason):
case.py 289 addSkip = getattr(result, 'addSkip', None)
290 if addSkip is not None:
291 addSkip(self, reason)
293 warnings.warn("TestResult has no addSkip method, skips not reported",
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
suite.py 194 addSkip = getattr(result, 'addSkip', None)
195 if addSkip is not None and isinstance(exception, case.SkipTest):
196 addSkip(error, str(exception))
runner.py 81 def addSkip(self, test, reason):
82 super(TextTestResult, self).addSkip(test, reason)
result.py 130 def addSkip(self, test, reason):
case.py 289 addSkip = getattr(result, 'addSkip', None)
290 if addSkip is not None:
291 addSkip(self, reason)
293 warnings.warn("TestResult has no addSkip method, skips not reported",
    [all...]

Completed in 44 milliseconds