summaryrefslogtreecommitdiff
path: root/org.genivi.commonapi.core.verification/src/stub/StabilityMPStub.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'org.genivi.commonapi.core.verification/src/stub/StabilityMPStub.cpp')
-rw-r--r--org.genivi.commonapi.core.verification/src/stub/StabilityMPStub.cpp48
1 files changed, 0 insertions, 48 deletions
diff --git a/org.genivi.commonapi.core.verification/src/stub/StabilityMPStub.cpp b/org.genivi.commonapi.core.verification/src/stub/StabilityMPStub.cpp
deleted file mode 100644
index 1468e8e..0000000
--- a/org.genivi.commonapi.core.verification/src/stub/StabilityMPStub.cpp
+++ /dev/null
@@ -1,48 +0,0 @@
-/* Copyright (C) 2015 BMW Group
- * Author: JP Ikaheimonen (jp_ikaheimonen@mentor.com)
- * 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/. */
-
-#include "StabilityMPStub.h"
-
-#ifndef WIN32
-#include <unistd.h>
-#endif
-
-namespace v1_0 {
-namespace commonapi {
-namespace stability {
-namespace mp {
-
-using namespace v1_0::commonapi::stability::mp;
-
-StabilityMPStub::StabilityMPStub() {
-}
-
-StabilityMPStub::~StabilityMPStub() {
-}
-
-void StabilityMPStub::testMethod(const std::shared_ptr<CommonAPI::ClientId> clientId,
- TestInterface::tArray tArrayIn,
- testMethodReply_t _reply) {
-
- TestInterface::tArray tArrayOut;
- tArrayOut = tArrayIn;
-
- fireTestBroadcastEvent(
- tArrayOut
- );
- _reply(tArrayOut);
-}
-
-void StabilityMPStub::setTestValues(TestInterface::tArray x) {
- setTestAttributeAttribute(x);
-}
-
-} /* namespace v1_0 */
-} /* namespace mp */
-} /* namespace stability */
-} /* namespace commonapi */
-
-