(self, entity_spec, uri=None)
| 427 | self.test.fail(f"Unable to create entity of unknown type {entity_type}") |
| 428 | |
| 429 | def create_entities_from_spec(self, entity_spec, uri=None): |
| 430 | for spec in entity_spec: |
| 431 | self._create_entity(spec, uri=uri) |
| 432 | |
| 433 | def get_listener_for_client(self, client_name: str) -> EventListenerUtil: |
| 434 | client = self[client_name] |
no test coverage detected