Skip to content
Snippets Groups Projects
Verified Commit 786e4fe8 authored by Martin Stump's avatar Martin Stump
Browse files

Fix MockEnvironmentEngine function specifiers


Signed-off-by: default avatarMartin Stump <martin.stump@mercedes-benz.com>
parent e379565c
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ class MockEnvironmentEngine final : public IEnvironmentEngine
{
public:
MOCK_METHOD(mantle_api::IEnvironment*, GetEnvironment, (), (noexcept, override));
MOCK_METHOD(void, Step, (Time size), (noexcept, override));
MOCK_METHOD(void, Step, (Time size), (override));
MOCK_METHOD(std::optional<mantle_api::Time>, GetStepSize, (), (const, noexcept, override));
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment