(self)
| 781 | self.assertGreater(logging_level, CRITICAL) |
| 782 | |
| 783 | def testVerboseOption(self): |
| 784 | options, logging_level = parse_options(['-v']) |
| 785 | self.assertEqual(logging_level, WARNING) |
| 786 | |
| 787 | def testNoisyOption(self): |
| 788 | options, logging_level = parse_options(['--noisy']) |
nothing calls this directly
no test coverage detected