()
| 270 | } |
| 271 | |
| 272 | function runAction() { |
| 273 | const choice = (Math.random() * 20) | 0; |
| 274 | |
| 275 | switch (choice) { |
| 276 | case 0: |
| 277 | createProxy(); |
| 278 | break; |
| 279 | |
| 280 | case 1: |
| 281 | destroyProxy(); |
| 282 | break; |
| 283 | |
| 284 | default: |
| 285 | moveProxy(); |
| 286 | } |
| 287 | } |
no test coverage detected