(cls)
| 522 | |
| 523 | @classmethod |
| 524 | def setUpClass(cls) -> None: |
| 525 | # Speed up the tests by decreasing the heartbeat frequency. |
| 526 | cls.knobs = client_knobs( |
| 527 | heartbeat_frequency=0.1, |
| 528 | min_heartbeat_interval=0.1, |
| 529 | kill_cursor_frequency=0.1, |
| 530 | events_queue_frequency=0.1, |
| 531 | ) |
| 532 | cls.knobs.enable() |
| 533 | |
| 534 | @classmethod |
| 535 | def tearDownClass(cls) -> None: |
nothing calls this directly
no test coverage detected