summaryrefslogtreecommitdiff
path: root/AudioManagerDaemon/test/AmNodeStateCommunicatorDBusTest/CAmNodeStateCommunicatorTest.h
diff options
context:
space:
mode:
Diffstat (limited to 'AudioManagerDaemon/test/AmNodeStateCommunicatorDBusTest/CAmNodeStateCommunicatorTest.h')
-rw-r--r--AudioManagerDaemon/test/AmNodeStateCommunicatorDBusTest/CAmNodeStateCommunicatorTest.h63
1 files changed, 0 insertions, 63 deletions
diff --git a/AudioManagerDaemon/test/AmNodeStateCommunicatorDBusTest/CAmNodeStateCommunicatorTest.h b/AudioManagerDaemon/test/AmNodeStateCommunicatorDBusTest/CAmNodeStateCommunicatorTest.h
deleted file mode 100644
index 985d594..0000000
--- a/AudioManagerDaemon/test/AmNodeStateCommunicatorDBusTest/CAmNodeStateCommunicatorTest.h
+++ /dev/null
@@ -1,63 +0,0 @@
-/**
- * SPDX license identifier: MPL-2.0
- *
- * Copyright (C) 2012, BMW AG
- *
- * This file is part of GENIVI Project AudioManager.
- *
- * Contributions are licensed to the GENIVI Alliance under one or more
- * Contribution License Agreements.
- *
- * \copyright
- * 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/.
- *
- *
- * \author Christian Linke, christian.linke@bmw.de BMW 2012
- *
- * \file CAmNodeStateCommunicatorTest.h
- * For further information see http://www.genivi.org/.
- *
- */
-#ifndef CAMNODESTATECOMMUNICATORTEST_H_
-#define CAMNODESTATECOMMUNICATORTEST_H_
-
-#include "CAmNodeStateCommunicatorDBus.h"
-#include "CAmControlSender.h"
-#include "gtest/gtest.h"
-#include "gmock/gmock.h"
-#include "../IAmControlBackdoor.h"
-#include "../MockIAmControlSend.h"
-
-using namespace testing;
-using namespace am;
-
-class CAmEnvironment : public ::testing::Environment
-{
-public:
- IAmControlBackdoor pControlInterfaceBackdoor;
- CAmControlSender pControlSender;
- CAmSocketHandler iSocketHandler;
- CAmDbusWrapper wrapper;
- CAmNodeStateCommunicatorDBus nsmController;
- pthread_t pNsmThread, pMainLoopThread;
- CAmEnvironment();
- ~CAmEnvironment();
- void SetUp();
- // Override this to define how to tear down the environment.
- void TearDown();
-};
-
-class CAmNodeStateCommunicatorTest:public ::testing::Test
-{
-public:
- MockIAmControlSend pMockControlInterface;
- CAmNodeStateCommunicatorTest();
- virtual ~CAmNodeStateCommunicatorTest();
- void SetUp();
- void TearDown();
-};
-
-
-#endif /* CAMNODESTATECOMMUNICATORTEST_H_ */