Remove unnecessary header inclusion 58/305458/1
authorHwankyu Jhun <h.jhun@samsung.com>
Fri, 2 Feb 2024 00:39:16 +0000 (09:39 +0900)
committerHwankyu Jhun <h.jhun@samsung.com>
Fri, 2 Feb 2024 00:39:16 +0000 (09:39 +0900)
To make aul mock for event-system unit tests, the aul.h and the aul_svc.h
only are needed.
This patch removes unnecessary header inclusions.

Removes:
 - #include <aul_rsc_mgr.h>
 - #include <aul_rpc_port.h>
 - #include <aul_app_com.h>
 - #include <aul_complication.h>

Change-Id: Iafd006a8a69a8a8bc0a1e81e19937ad791a994b8
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
tests/mock/aul_mock.h

index 63f6535..e8ca501 100644 (file)
 #define MOCK_AUL_MOCK_H_
 
 #include <aul.h>
-#include <aul_rsc_mgr.h>
-#include <aul_rpc_port.h>
-#include <aul_app_com.h>
 #include <aul_svc.h>
-#include <aul_complication.h>
 #include <gmock/gmock.h>
 
 #include "module_mock.h"
@@ -38,4 +34,4 @@ class AulMock : public virtual ModuleMock {
   MOCK_METHOD3(aul_app_get_appid_bypid, int (int, char*, int));
 };
 
-#endif  // MOCK_AUL_MOCK_H_
\ No newline at end of file
+#endif  // MOCK_AUL_MOCK_H_