Home
last modified time | relevance | path

Searched refs:assertNoLogs (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Lib/unittest/test/
Dtest_case.py1710 with self.assertNoLogs():
1720 with self.assertNoLogs():
1732 with self.assertNoLogs(logger=log_foo):
1740 with self.assertNoLogs(logger=log_foo):
1751 with self.assertNoLogs(level="ERROR"):
1758 with self.assertNoLogs(level="DEBUG"):
1769 with self.assertNoLogs():
1773 with self.assertNoLogs() as value:
/third_party/python/Lib/unittest/
Dcase.py798 def assertNoLogs(self, logger=None, level=None): member in TestCase
/third_party/python/Doc/library/
Dunittest.rst957 …| :meth:`assertNoLogs(logger, level) | The ``with`` block does not log on |…
958 …| <TestCase.assertNoLogs>` | *logger* with minimum *level* |…
1132 .. method:: assertNoLogs(logger=None, level=None)
/third_party/python/Misc/NEWS.d/
D3.10.0a1.rst2336 A new test assertion context-manager, :func:`unittest.assertNoLogs` will
/third_party/python/Doc/whatsnew/
D3.10.rst1469 Add new method :meth:`~unittest.TestCase.assertNoLogs` to complement the