Test name set from initialization.
(self)
| 52 | """Tests for Operator name property.""" |
| 53 | |
| 54 | def test_name_from_init(self): |
| 55 | """Test name set from initialization.""" |
| 56 | op = ConcreteOperator(name="MyOperator") |
| 57 | assert op.name == "MyOperator" |
| 58 | |
| 59 | def test_name_default(self): |
| 60 | """Test default name is class name.""" |
nothing calls this directly
no test coverage detected