(self, logger, pack_name, class_name, api_username=None)
| 31 | """ |
| 32 | |
| 33 | def __init__(self, logger, pack_name, class_name, api_username=None): |
| 34 | self._pack_name = pack_name |
| 35 | self._class_name = class_name |
| 36 | self._username = api_username or "admin" |
| 37 | self._logger = logger |
| 38 | |
| 39 | # Holds mock KeyValuePair objects |
| 40 | # Key is a KeyValuePair name and value is the KeyValuePair object |
| 41 | self._datastore_items = {} |
| 42 | |
| 43 | ################################## |
| 44 | # General methods |
nothing calls this directly
no outgoing calls
no test coverage detected