(data)
| 13 | class TestBase: |
| 14 | def do_racing_insort(self, insert_method): |
| 15 | def insert(data): |
| 16 | for _ in range(OBJECT_COUNT): |
| 17 | x = random.randint(-OBJECT_COUNT, OBJECT_COUNT) |
| 18 | insert_method(data, x) |
| 19 | |
| 20 | data = list(range(OBJECT_COUNT)) |
| 21 | threading_helper.run_concurrently( |
no test coverage detected