Test preparation
(self)
| 125 | """Test CustomFormatter class""" |
| 126 | |
| 127 | def setUp(self): |
| 128 | """Test preparation""" |
| 129 | self.formatter = CustomFormatter("%(levelname)s - %(message)s") |
| 130 | |
| 131 | def test_format_with_attributes(self): |
| 132 | """Test log formatting with attributes""" |
nothing calls this directly
no test coverage detected