(self)
| 404 | text2, 'find', pattern2) |
| 405 | |
| 406 | def test_lower(self): |
| 407 | self.checkequal('hello', 'HeLLo', 'lower') |
| 408 | self.checkequal('hello', 'hello', 'lower') |
| 409 | self.checkraises(TypeError, 'hello', 'lower', 42) |
| 410 | |
| 411 | def test_upper(self): |
| 412 | self.checkequal('HELLO', 'HeLLo', 'upper') |
nothing calls this directly
no test coverage detected