(self, fullname)
| 73 | |
| 74 | class MockMsfModule: |
| 75 | def __init__(self, fullname): |
| 76 | self.fullname = fullname |
| 77 | self.options = {} |
| 78 | # Create a proper mock for runoptions that supports __setitem__ |
| 79 | self.runoptions = {} |
| 80 | self.missing_required = [] |
| 81 | |
| 82 | def __setitem__(self, key, value): |
| 83 | self.options[key] = value |
nothing calls this directly
no outgoing calls
no test coverage detected