(self)
| 284 | |
| 285 | @test_case(number=10_000) |
| 286 | def getattr_recreate(self): |
| 287 | self.init_objects() |
| 288 | row = self.row |
| 289 | for _ in range(25): |
| 290 | row.a |
| 291 | l_row = self.row_long |
| 292 | for _ in range(25): |
| 293 | l_row.f |
| 294 | l_row.o |
| 295 | l_row.r |
| 296 | l_row.t |
| 297 | l_row.y |
| 298 | l_row.t |
| 299 | l_row.w |
| 300 | l_row.o |
| 301 | |
| 302 | @test_case |
| 303 | def contains(self): |
nothing calls this directly
no test coverage detected