Test initialization with custom name.
(self)
| 33 | assert op is not None |
| 34 | |
| 35 | def test_init_with_name(self): |
| 36 | """Test initialization with custom name.""" |
| 37 | op = ConcreteOperator(name="CustomOperator") |
| 38 | assert op.name == "CustomOperator" |
| 39 | |
| 40 | def test_init_with_logger(self, mock_logger): |
| 41 | """Test initialization with logger.""" |
nothing calls this directly
no test coverage detected