(self, obj, methodname, *args)
| 86 | |
| 87 | # call obj.method(*args) without any checks |
| 88 | def checkcall(self, obj, methodname, *args): |
| 89 | obj = self.fixtype(obj) |
| 90 | args = self.fixtype(args) |
| 91 | getattr(obj, methodname)(*args) |
| 92 | |
| 93 | def test_count(self): |
| 94 | self.checkequal(3, 'aaa', 'count', 'a') |
no test coverage detected