(self)
| 785 | self.assertEqual(logging_level, WARNING) |
| 786 | |
| 787 | def testNoisyOption(self): |
| 788 | options, logging_level = parse_options(['--noisy']) |
| 789 | self.assertEqual(logging_level, DEBUG) |
| 790 | |
| 791 | def testInputFileOption(self): |
| 792 | options, logging_level = parse_options(['foo.txt']) |
nothing calls this directly
no test coverage detected