()
| 192 | |
| 193 | |
| 194 | async def test_get_height(): |
| 195 | client = make_client() |
| 196 | total_time = 0 |
| 197 | for _ in range(NUM_BENCHMARK_RUNS): |
| 198 | start_time = time.time() |
| 199 | await client.get_height() |
| 200 | execution_time = (time.time() - start_time) * 1000 |
| 201 | total_time += execution_time |
| 202 | print(f"get_height time: {format(execution_time, '.9f')}ms") |
| 203 | |
| 204 | |
| 205 | async def test_decode_logs(): |
no test coverage detected