(self, *args)
| 35 | validate() |
| 36 | |
| 37 | def run_xml2json(self, *args): |
| 38 | with patch.object(sys, 'argv', ['xmlschema-xml2json'] + list(args)): |
| 39 | with self.assertRaises(SystemExit) as self.ctx: |
| 40 | xml2json() |
| 41 | |
| 42 | def run_json2xml(self, *args): |
| 43 | with patch.object(sys, 'argv', ['xmlschema-json2xml'] + list(args)): |
no test coverage detected