(self, theId)
| 54 | return self._services |
| 55 | |
| 56 | def get_service_with_id(self, theId): |
| 57 | matches = [x for x in self._services if x.service_id == theId] |
| 58 | if len(matches): |
| 59 | return matches[0] |
| 60 | else: |
| 61 | return None |
| 62 | |
| 63 | def add_service(self, service): |
| 64 | assert self.get_service_with_id(service.service_id) is None |
no outgoing calls
no test coverage detected