Home
last modified time | relevance | path

Searched refs:expectedFailure (Results 1 – 18 of 18) sorted by relevance

/third_party/python/Lib/unittest/test/
Dtest_skipping.py218 @unittest.expectedFailure
233 @unittest.expectedFailure
254 @unittest.expectedFailure
273 @unittest.expectedFailure
298 @unittest.expectedFailure
317 @unittest.expectedFailure
336 @unittest.expectedFailure
354 @unittest.expectedFailure
377 @unittest.expectedFailure
396 @unittest.expectedFailure
Dtest_result.py501 @unittest.expectedFailure
504 @unittest.expectedFailure
Dtest_case.py1949 @unittest.expectedFailure
/third_party/python/Lib/unittest/
Dcase.py51 self.expectedFailure = None
70 self.expectedFailure = exc_info
147 def expectedFailure(test_item): function
503 elif self._outcome.expectedFailure:
602 if outcome.expectedFailure:
603 self._addExpectedFailure(result, outcome.expectedFailure)
614 outcome.expectedFailure = None
D__init__.py61 skipIf, skipUnless, expectedFailure)
/third_party/python/Lib/test/
Dtest_pulldom.py137 @unittest.expectedFailure
147 @unittest.expectedFailure
184 @unittest.expectedFailure
Dtest_pty.py80 return unittest.expectedFailure(fun)
Dtest_pprint.py614 @unittest.expectedFailure
Dtest_descr.py1775 @unittest.expectedFailure
1822 @unittest.expectedFailure
/third_party/python/Lib/test/test_importlib/
Dtest_namespace_pkgs.py262 @unittest.expectedFailure
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/text/
DSpoofCheckerTest.java599 boolean expectedFailure = expectedLevel.compareTo(levelSetInSpoofChecker) > 0; in TestRestrictionLevel()
601 expectedFailure, actualValue); in TestRestrictionLevel()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/text/
DSpoofCheckerTest.java596 boolean expectedFailure = expectedLevel.compareTo(levelSetInSpoofChecker) > 0; in TestRestrictionLevel()
598 expectedFailure, actualValue); in TestRestrictionLevel()
/third_party/python/Doc/library/
Dunittest.rst566 Expected failures use the :func:`expectedFailure` decorator. ::
569 @unittest.expectedFailure
597 .. decorator:: expectedFailure
2022 from tests marked with the :func:`expectedFailure` decorator.
2105 the :func:`expectedFailure` decorator.
2115 :func:`expectedFailure` decorator, but succeeded.
Dtest.rst655 :func:`unittest.expectedFailure`. Any use of this decorator should
/third_party/python/Lib/test/support/
D__init__.py138 return unittest.expectedFailure
/third_party/python/Doc/whatsnew/
D3.1.rst349 @unittest.expectedFailure
/third_party/python/Misc/NEWS.d/
D3.5.1rc1.rst845 Fix regression in unittest.expectedFailure on subclasses. Patch from Berker
/third_party/python/Misc/
DHISTORY411 - Issue #21112: Fix regression in unittest.expectedFailure on subclasses.
2651 @expectedFailure successful if they pass.