| 186 | namespace EngineTestUtils { |
| 187 | |
| 188 | Timer::Timer() : start(std::chrono::high_resolution_clock::now()) {} |
| 189 | |
| 190 | double Timer::elapsed_ms() const { |
| 191 | auto end = std::chrono::high_resolution_clock::now(); |
nothing calls this directly
no outgoing calls
no test coverage detected