(sst)
| 130 | |
| 131 | @actor |
| 132 | def stress_update(sst): |
| 133 | def iter_randomly(start, stop, count): |
| 134 | for rpt in range(count): |
| 135 | yield random.randrange(start, stop) |
| 136 | sst.update(iter_randomly(0, 500, 100), |
| 137 | iter_randomly(500, 1000, 100), |
| 138 | iter_randomly(1000, 1500, 100), |
| 139 | iter_randomly(1500, 2000, 100)) |
| 140 | |
| 141 | @actor |
| 142 | def stress_isdisjoint(sst): |
nothing calls this directly
no test coverage detected