1 #include "generate_unique_mock_id.hpp" 2 3 uint64_t generateUniqueMockId() 4 { 5 static uint64_t id = 0u; 6 return id++; 7 } 8