Test initialization with defaults.
(self)
| 116 | """Tests for Logger initialization.""" |
| 117 | |
| 118 | def test_init_default(self): |
| 119 | """Test initialization with defaults.""" |
| 120 | logger = Logger() |
| 121 | assert logger is not None |
| 122 | |
| 123 | def test_init_with_name(self): |
| 124 | """Test initialization with custom name.""" |