(self)
| 1958 | ) |
| 1959 | |
| 1960 | def testAssertNoLogsPerLogger(self): |
| 1961 | with self.assertNoStderr(): |
| 1962 | with self.assertLogs(log_quux): |
| 1963 | with self.assertNoLogs(logger=log_foo): |
| 1964 | log_quux.error("1") |
| 1965 | |
| 1966 | def testAssertNoLogsFailurePerLogger(self): |
| 1967 | # Failure due to unexpected logs for the given logger or its |
nothing calls this directly
no test coverage detected