summaryrefslogtreecommitdiff
path: root/AudioManagerDaemon/test/routingInterface
diff options
context:
space:
mode:
Diffstat (limited to 'AudioManagerDaemon/test/routingInterface')
-rw-r--r--AudioManagerDaemon/test/routingInterface/CMakeLists.txt1
-rw-r--r--AudioManagerDaemon/test/routingInterface/routingInterfaceTest.cpp8
-rw-r--r--AudioManagerDaemon/test/routingInterface/routingInterfaceTest.h1
3 files changed, 3 insertions, 7 deletions
diff --git a/AudioManagerDaemon/test/routingInterface/CMakeLists.txt b/AudioManagerDaemon/test/routingInterface/CMakeLists.txt
index 8d232f6..5b5da3c 100644
--- a/AudioManagerDaemon/test/routingInterface/CMakeLists.txt
+++ b/AudioManagerDaemon/test/routingInterface/CMakeLists.txt
@@ -53,6 +53,7 @@ file(GLOB ROUTING_INTERFACE_SRCS_CXX
"../../src/Router.cpp"
"../../src/ControlSender.cpp"
"../CommonFunctions.cpp"
+ "../../src/DLTWrapper.cpp"
"*.cpp"
)
diff --git a/AudioManagerDaemon/test/routingInterface/routingInterfaceTest.cpp b/AudioManagerDaemon/test/routingInterface/routingInterfaceTest.cpp
index 5adb863..61ca296 100644
--- a/AudioManagerDaemon/test/routingInterface/routingInterfaceTest.cpp
+++ b/AudioManagerDaemon/test/routingInterface/routingInterfaceTest.cpp
@@ -24,12 +24,11 @@
*/
#include "routingInterfaceTest.h"
+#include "DLTWrapper.h"
using namespace am;
using namespace testing;
-DLT_DECLARE_CONTEXT(DLT_CONTEXT)
-
routingInterfaceTest::routingInterfaceTest() :
plistRoutingPluginDirs(), //
plistCommandPluginDirs(), //
@@ -56,15 +55,12 @@ routingInterfaceTest::~routingInterfaceTest()
void routingInterfaceTest::SetUp()
{
- DLT_REGISTER_APP("Rtest", "RoutingInterfacetest");
- DLT_REGISTER_CONTEXT(DLT_CONTEXT, "Main", "Main Context");
- DLT_LOG(DLT_CONTEXT, DLT_LOG_INFO, DLT_STRING("RoutingSendInterface Test started "));
+ logInfo("RoutingSendInterface Test started ");
}
void routingInterfaceTest::TearDown()
{
- DLT_UNREGISTER_CONTEXT(DLT_CONTEXT);
}
TEST_F(routingInterfaceTest,abort)
diff --git a/AudioManagerDaemon/test/routingInterface/routingInterfaceTest.h b/AudioManagerDaemon/test/routingInterface/routingInterfaceTest.h
index 8ad77eb..0608eb4 100644
--- a/AudioManagerDaemon/test/routingInterface/routingInterfaceTest.h
+++ b/AudioManagerDaemon/test/routingInterface/routingInterfaceTest.h
@@ -28,7 +28,6 @@
#include <gtest/gtest.h>
#include <gmock/gmock.h>
-#include <dlt/dlt.h>
#include <algorithm>
#include <string>
#include <vector>