Home | History | Annotate | Download | only in pseudomodem

Lines Matching full:test_module

186         if not self._opts.test_module:
189 test_module = self._LoadCustomPartsModule(self._opts.test_module)
192 self._modem = self._CreateCustomObject(test_module,
197 self._sim = self._CreateCustomObject(test_module,
208 test_module,
213 def _CreateCustomObject(self, test_module, class_name, arg_file_name):
217 @param test_module: The loaded module that implemets the custom object.
220 taken by |test_module|.|class_name| constructor in json.
238 class_def = getattr(test_module, class_name)
436 if not opts.test_module and test_objects:
437 raise argparse.ArgumentTypeError('test_module is required with any '