This commit is contained in:
2024-10-09 13:41:32 -05:00
parent 3fa16fd846
commit d20ed07066
7 changed files with 48 additions and 17 deletions

View File

@@ -37,7 +37,10 @@ public:
MOCK_METHOD(filesystem_item, get_filesystem_item, (), (const, override));
MOCK_METHOD(open_file_data, get_open_data, (std::uint64_t handle),
MOCK_METHOD(open_file_data &, get_open_data, (std::uint64_t handle),
(override));
MOCK_METHOD(const open_file_data &, get_open_data, (std::uint64_t handle),
(const, override));
MOCK_METHOD(std::size_t, get_open_file_count, (), (const, override));
@@ -82,8 +85,11 @@ public:
MOCK_METHOD(std::vector<std::uint64_t>, get_handles, (), (const, override));
MOCK_METHOD((std::map<std::uint64_t, open_file_data>), get_open_data, (),
(const, override));
MOCK_METHOD((std::map<std::uint64_t, open_file_data> &), get_open_data, (),
(override));
MOCK_METHOD((const std::map<std::uint64_t, open_file_data> &), get_open_data,
(), (const, override));
MOCK_METHOD(bool, is_complete, (), (const, override));