Skip to content
Snippets Groups Projects
Commit 5efe1c17 authored by Lorenzo Appino's avatar Lorenzo Appino Committed by Andreas Rauschert
Browse files

fix: Method SetDateTime in MockEnvironment mocked

parent 56bbd8dd
No related branches found
Tags v2.1.0
1 merge request!143fix: Method SetDateTime in MockEnvironment mocked
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2021-2022, Bayerische Motoren Werke Aktiengesellschaft (BMW AG) * Copyright (c) 2021-2024, Bayerische Motoren Werke Aktiengesellschaft (BMW AG)
* Copyright (c) 2022 Ansys, Inc. * Copyright (c) 2022 Ansys, Inc.
* *
* This program and the accompanying materials are made * This program and the accompanying materials are made
...@@ -568,7 +568,10 @@ public: ...@@ -568,7 +568,10 @@ public:
(const std::string& name), (const std::string& name),
(override)); (override));
void SetDateTime(mantle_api::Time date_time) override { std::ignore = date_time; } MOCK_METHOD(void,
SetDateTime,
(mantle_api::Time date_time),
(override));
mantle_api::Time GetDateTime() override { return mantle_api::Time(); } mantle_api::Time GetDateTime() override { return mantle_api::Time(); }
......
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