(self)
| 1877 | self.assertEqual(outer_cm.output, ["WARNING:quux:3"]) |
| 1878 | |
| 1879 | def testAssertLogsPerLogger(self): |
| 1880 | self.checkAssertLogsPerLogger(logging.getLogger('foo')) |
| 1881 | self.checkAssertLogsPerLogger('foo') |
| 1882 | |
| 1883 | def testAssertLogsFailureNoLogs(self): |
| 1884 | # Failure due to no logs |
nothing calls this directly
no test coverage detected