summaryrefslogtreecommitdiff
path: root/NodeStateMachineStub/Test_StubImpl.hpp
diff options
context:
space:
mode:
authorMonika Forstner <Monika_Forstner@mentor.com>2020-09-16 10:20:03 +0200
committerMonika Forstner <Monika_Forstner@mentor.com>2020-09-16 10:50:27 +0200
commit2fb502b4bc23aa13fee1db3395b3cae5e34cc871 (patch)
treed9cd2c64522f190500dc53291b4fbcf5100b9720 /NodeStateMachineStub/Test_StubImpl.hpp
parent253d10aada6bf5cdfe307aaff55363f08194c85e (diff)
downloadnode-state-manager-release_NSM_CommonAPI.tar.gz
NSM Release 3.0release_NSM_CommonAPI
Diffstat (limited to 'NodeStateMachineStub/Test_StubImpl.hpp')
-rw-r--r--NodeStateMachineStub/Test_StubImpl.hpp42
1 files changed, 42 insertions, 0 deletions
diff --git a/NodeStateMachineStub/Test_StubImpl.hpp b/NodeStateMachineStub/Test_StubImpl.hpp
new file mode 100644
index 0000000..d910a56
--- /dev/null
+++ b/NodeStateMachineStub/Test_StubImpl.hpp
@@ -0,0 +1,42 @@
+/**********************************************************************************************************************
+*
+* Copyright (C) 2017 BMW AG
+*
+* The header file defines the interfaces offered by the NodeStateMachine stub.
+*
+* This Source Code Form is subject to the terms of the Mozilla Public
+* License, v. 2.0. If a copy of the MPL was not distributed with this
+* file, You can obtain one at http://mozilla.org/MPL/2.0/.
+*
+**********************************************************************************************************************/
+
+#ifndef TEST_STUBIMPL_HPP
+#define TEST_STUBIMPL_HPP
+
+#include <v1/org/genivi/nodestatemachinetest/TestStubDefault.hpp>
+#include <v1/org/genivi/NodeStateManagerTypes.hpp>
+
+namespace GENIVI = v1::org::genivi;
+namespace NodeStateMachineTest = v1::org::genivi::nodestatemachinetest;
+
+/*********************************************************************************************
+ *
+ * NodeStateMachineTest Class
+ *
+ *********************************************************************************************/
+
+class Test_StubImpl: public NodeStateMachineTest::TestStubDefault
+{
+
+public:
+ void SetNsmData(const std::shared_ptr<CommonAPI::ClientId> _client, GENIVI::NodeStateManagerTypes::NsmDataType_e _DataType,
+ std::vector<uint8_t> _Data, uint32_t _DataLen, SetNsmDataReply_t _reply);
+
+ void GetNsmData(const std::shared_ptr<CommonAPI::ClientId> _client, GENIVI::NodeStateManagerTypes::NsmDataType_e _DataType,
+ std::vector<uint8_t> _DataIn, uint32_t _DataLen, GetNsmDataReply_t _reply);
+
+};
+
+
+
+#endif /* NODESTATEMACHINELIFECYCLE_TEST_STUBIMPL_HPP */