Add missing MOCK_METHODS to MockedRequestRouter

This commit is contained in:
gvolfing 2023-01-19 17:16:29 +01:00
parent 96ea113a69
commit 6fe244b209

View File

@ -42,6 +42,8 @@ class MockedRequestRouter : public RequestRouterInterface {
MOCK_METHOD(std::optional<storage::v3::LabelId>, MaybeNameToLabel, (const std::string &), (const));
MOCK_METHOD(bool, IsPrimaryLabel, (storage::v3::LabelId), (const));
MOCK_METHOD(bool, IsPrimaryKey, (storage::v3::LabelId, storage::v3::PropertyId), (const));
MOCK_METHOD(std::optional<std::pair<uint64_t, uint64_t>>, AllocateInitialEdgeIds, (io::Address));
MOCK_METHOD(void, InstallSimulatorTicker, (std::function<bool()>));
};
class MockedLogicalOperator : public plan::LogicalOperator {