blob: 7ce4040bfed76238a73967f7df918516535e283f [file] [log] [blame]
Krzysztof Grobelny7f06f612020-09-24 13:42:10 +02001#include "generate_unique_mock_id.hpp"
2
Szymon Dompke1cdd7e42022-06-08 14:43:13 +02003#include "helpers.hpp"
4
Krzysztof Grobelny7f06f612020-09-24 13:42:10 +02005uint64_t generateUniqueMockId()
6{
7 static uint64_t id = 0u;
8 return id++;
9}