Generate a message consisting solely of an auto-incrementing integer.
(self)
| 185 | self.fail("Remaining output at end of log stream:\n" + s) |
| 186 | |
| 187 | def next_message(self): |
| 188 | """Generate a message consisting solely of an auto-incrementing |
| 189 | integer.""" |
| 190 | self.message_num += 1 |
| 191 | return "%d" % self.message_num |
| 192 | |
| 193 | |
| 194 | class BuiltinLevelsTest(BaseTest): |
no outgoing calls
no test coverage detected