| 51 | } |
| 52 | |
| 53 | void Begin() |
| 54 | { |
| 55 | size_t count = original_list->getItemCount(); |
| 56 | if (count == 0) |
| 57 | return; |
| 58 | size_t index = ((size_t)rand() % count); |
| 59 | original_list->beginToItemAt(index); |
| 60 | |
| 61 | checkList(); |
| 62 | } |
| 63 | |
| 64 | void Begin(size_t _count) |
| 65 | { |
nothing calls this directly
no test coverage detected