summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJackLivio <jack@livio.io>2019-03-17 15:15:16 -0400
committerJackLivio <jack@livio.io>2019-03-17 15:15:16 -0400
commit36b383be1c8dd77218d0954e7851389c1de71f08 (patch)
tree072f86bb54cb4d36fba38671984cbe4ac446f238
parent73d3df9661b5ccf5a19f785a5f72472cd51dcdde (diff)
downloadsdl_core-tests/app_service_command_tests.tar.gz
-rw-r--r--src/components/application_manager/include/application_manager/rpc_passing_handler.h1
-rw-r--r--src/components/application_manager/rpc_plugins/app_service_rpc_plugin/test/commands/mobile/on_app_service_data_notification_test.cc10
2 files changed, 5 insertions, 6 deletions
diff --git a/src/components/application_manager/include/application_manager/rpc_passing_handler.h b/src/components/application_manager/include/application_manager/rpc_passing_handler.h
index cc0ac2979a..ab85b1374f 100644
--- a/src/components/application_manager/include/application_manager/rpc_passing_handler.h
+++ b/src/components/application_manager/include/application_manager/rpc_passing_handler.h
@@ -39,7 +39,6 @@
#include "interfaces/MOBILE_API.h"
#include "smart_objects/smart_object.h"
#include "utils/timer.h"
-#include "application_manager/commands/command.h"
namespace application_manager {
diff --git a/src/components/application_manager/rpc_plugins/app_service_rpc_plugin/test/commands/mobile/on_app_service_data_notification_test.cc b/src/components/application_manager/rpc_plugins/app_service_rpc_plugin/test/commands/mobile/on_app_service_data_notification_test.cc
index d501ea08ea..47358ef631 100644
--- a/src/components/application_manager/rpc_plugins/app_service_rpc_plugin/test/commands/mobile/on_app_service_data_notification_test.cc
+++ b/src/components/application_manager/rpc_plugins/app_service_rpc_plugin/test/commands/mobile/on_app_service_data_notification_test.cc
@@ -70,10 +70,10 @@ namespace app_service_plugin_test {
using namespace app_service_rpc_plugin;
using application_manager::ApplicationSet;
-class OnAppServiceDatanotificationTest
+class OnAppServiceDataNotificationTest
: public CommandsTest<CommandsTestMocks::kIsNice> {
public:
- OnAppServiceDatanotificationTest()
+ OnAppServiceDataNotificationTest()
: mock_app_(std::make_shared<NiceMock<MockApplication> >())
, app_service_app_extension_(
std::make_shared<app_service_rpc_plugin::AppServiceAppExtension>(
@@ -113,7 +113,7 @@ class OnAppServiceDatanotificationTest
MockAppServiceManager app_service_manager_;
};
-TEST_F(OnAppServiceDatanotificationTest, Run_SendMessageToMobile_Notification) {
+TEST_F(OnAppServiceDataNotificationTest, Run_SendMessageToMobile_Notification) {
MessageSharedPtr mobile_message = CreateBasicMessage();
(*mobile_message)[am::strings::msg_params][am::strings::service_data]
@@ -152,7 +152,7 @@ TEST_F(OnAppServiceDatanotificationTest, Run_SendMessageToMobile_Notification) {
Mock::VerifyAndClearExpectations(&app_mngr_);
}
-TEST_F(OnAppServiceDatanotificationTest, Run_NoService) {
+TEST_F(OnAppServiceDataNotificationTest, Run_NoService) {
MessageSharedPtr mobile_message = CreateBasicMessage();
(*mobile_message)[am::strings::msg_params][am::strings::service_data]
@@ -180,7 +180,7 @@ TEST_F(OnAppServiceDatanotificationTest, Run_NoService) {
Mock::VerifyAndClearExpectations(&app_mngr_);
}
-TEST_F(OnAppServiceDatanotificationTest, Run_NoSubscribedApps) {
+TEST_F(OnAppServiceDataNotificationTest, Run_NoSubscribedApps) {
MessageSharedPtr mobile_message = CreateBasicMessage();
(*mobile_message)[am::strings::msg_params][am::strings::service_data]