| 8 | using namespace std::chrono; |
| 9 | |
| 10 | test_step::test_step(const char* step_name, std::function<void()> callable) : m_step_name(step_name), m_step(std::move(callable)) {} |
| 11 | |
| 12 | void test_step::launch_test_step() noexcept { |
| 13 | const auto test_start_time = system_clock::now(); |
nothing calls this directly
no outgoing calls
no test coverage detected