summaryrefslogtreecommitdiff
path: root/PluginCommandInterfaceDbus/test/CAmCommandSenderDbusTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'PluginCommandInterfaceDbus/test/CAmCommandSenderDbusTest.cpp')
-rw-r--r--PluginCommandInterfaceDbus/test/CAmCommandSenderDbusTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/PluginCommandInterfaceDbus/test/CAmCommandSenderDbusTest.cpp b/PluginCommandInterfaceDbus/test/CAmCommandSenderDbusTest.cpp
index 9156b77..932001a 100644
--- a/PluginCommandInterfaceDbus/test/CAmCommandSenderDbusTest.cpp
+++ b/PluginCommandInterfaceDbus/test/CAmCommandSenderDbusTest.cpp
@@ -122,7 +122,7 @@ ACTION(returnListSourceClasses){
std::vector<am::am_SourceClass_s> list;
am::am_SourceClass_s listItem;
am::am_ClassProperty_s property;
-property.classProperty=CP_MAX;
+property.classProperty=static_cast<am_ClassProperty_e>(2);
property.value=12;
listItem.name="FirstCLass";
listItem.sourceClassID=23;
@@ -139,7 +139,7 @@ ACTION(returnListSinkClasses){
std::vector<am::am_SinkClass_s> list;
am::am_SinkClass_s listItem;
am::am_ClassProperty_s property;
-property.classProperty=CP_MAX;
+property.classProperty=static_cast<am_ClassProperty_e>(1);
property.value=122;
listItem.name="FirstCLass";
listItem.sinkClassID=2123;
@@ -202,7 +202,7 @@ TEST_F(CAmCommandSenderDbusTest, MessageTest)
// ok, here we give the DBusWrapper pointer to the Plugin and start the interface
EXPECT_CALL(pReceiveInterface,getDBusConnectionWrapper(_)).WillRepeatedly(DoAll(SetArgReferee<0>(&pDBusWrapper), Return(E_OK)));
- EXPECT_CALL(pReceiveInterface, confirmCommandReady(10));
+ EXPECT_CALL(pReceiveInterface, confirmCommandReady(10,E_OK));
ppCommandSend->startupInterface(&pReceiveInterface);
ppCommandSend->setCommandReady(10);