Improve coverage and add notification unittest 20/297620/19
authorSukhyungKang <shine.kang@samsung.com>
Tue, 22 Aug 2023 01:51:31 +0000 (10:51 +0900)
committerSukhyungKang <shine.kang@samsung.com>
Wed, 27 Sep 2023 01:09:20 +0000 (10:09 +0900)
commit15b3b254a55d286f60cb904d9d9efae62af6df0e
tree1e6775ae270713b0bd6f316c85974d9dc2a794e4
parentc504090c8bb6d70937e28fd3d07eb1380a369823
Improve coverage and add notification unittest

Change-Id: I045b5f72d2d20f024b35cc1e3d51bff5fa7008d8
Signed-off-by: SukhyungKang <shine.kang@samsung.com>
93 files changed:
CMakeLists.txt
notification-ex/abstract_item.h
notification-ex/chat_message_item.cc
notification-ex/common.cc
notification-ex/db_manager.cc
notification-ex/db_manager.h
notification-ex/dbus_connection_manager.cc
notification-ex/dbus_connection_manager.h
notification-ex/dbus_event_listener.cc
notification-ex/dbus_event_listener_implementation.h
notification-ex/dbus_sender.cc
notification-ex/dbus_sender_implementation.h
notification-ex/event_info.cc
notification-ex/event_listener_interface.h
notification-ex/event_observer_interface.h
notification-ex/event_sender_interface.h
notification-ex/ex_util.cc
notification-ex/exception.h
notification-ex/ievent_info.h
notification-ex/ievent_info_internal.h
notification-ex/iitem_info.h
notification-ex/iitem_info_internal.h
notification-ex/image_item.cc
notification-ex/manager.cc
notification-ex/manager.h
notification-ex/multi_language.cc
notification-ex/multi_language.h
notification-ex/multi_language_implementation.h
notification-ex/null_item.cc
notification-ex/reporter.cc
notification-ex/reporter.h
notification-ex/shared_file.cc
notification-ex/shared_file.h
notification-ex/socket_handler.h
notification-ex/stub.cc
notification/src/notification_internal.c
notification/src/notification_ipc.c
notification/src/notification_ipc_socket.c
notification/src/notification_setting.c
notification/src/notification_setting_service.c
notification/src/notification_shared_file.c
notification/src/notification_status.c
notification/src/notification_viewer.c
packaging/notification.spec
tests/CMakeLists.txt
tests/mock/app_common_mock.cc
tests/mock/app_common_mock.hh [moved from tests/mock/app_common_mock.h with 93% similarity]
tests/mock/aul_mock.cc [new file with mode: 0644]
tests/mock/aul_mock.hh [moved from tests/mock/glib_mock.h with 52% similarity]
tests/mock/glib_mock.cc
tests/mock/glib_mock.hh [new file with mode: 0644]
tests/mock/mock_hook.hh [moved from tests/mock/mock_hook.h with 100% similarity]
tests/mock/module_mock.hh [moved from tests/mock/module_mock.h with 100% similarity]
tests/mock/package_manager_mock.cc [new file with mode: 0644]
tests/mock/package_manager_mock.hh [new file with mode: 0644]
tests/mock/security_manager_mock.cc
tests/mock/security_manager_mock.hh [moved from tests/mock/security_manager_mock.h with 98% similarity]
tests/mock/smack_mock.cc
tests/mock/smack_mock.hh [moved from tests/mock/smack_mock.h with 93% similarity]
tests/mock/socket_mock.cc [new file with mode: 0644]
tests/mock/socket_mock.hh [new file with mode: 0644]
tests/mock/sqlite_mock.cc [new file with mode: 0644]
tests/mock/sqlite_mock.hh [new file with mode: 0644]
tests/mock/test_fixture.cc
tests/mock/test_fixture.hh [moved from tests/mock/test_fixture.h with 98% similarity]
tests/mock/tzplatform_config_mock.cc
tests/mock/tzplatform_config_mock.hh [moved from tests/mock/tzplatform_config_mock.h with 92% similarity]
tests/noti_ex_unittest/CMakeLists.txt [moved from tests/unittest/CMakeLists.txt with 84% similarity]
tests/noti_ex_unittest/src/test_main.cc [moved from tests/unittest/src/test_main.cc with 100% similarity]
tests/noti_ex_unittest/src/test_noti_ex_abstract_item.cc [moved from tests/unittest/src/test_noti_ex_abstract_item.cc with 98% similarity]
tests/noti_ex_unittest/src/test_noti_ex_app_control_action.cc [moved from tests/unittest/src/test_noti_ex_app_control_action.cc with 97% similarity]
tests/noti_ex_unittest/src/test_noti_ex_button_item.cc [moved from tests/unittest/src/test_noti_ex_button_item.cc with 80% similarity]
tests/noti_ex_unittest/src/test_noti_ex_chat_message_item.cc [moved from tests/unittest/src/test_noti_ex_chat_message_item.cc with 96% similarity]
tests/noti_ex_unittest/src/test_noti_ex_checkbox_item.cc [moved from tests/unittest/src/test_noti_ex_checkbox_item.cc with 97% similarity]
tests/noti_ex_unittest/src/test_noti_ex_entry_item.cc [moved from tests/unittest/src/test_noti_ex_entry_item.cc with 96% similarity]
tests/noti_ex_unittest/src/test_noti_ex_event_info.cc [moved from tests/unittest/src/test_noti_ex_event_info.cc with 61% similarity]
tests/noti_ex_unittest/src/test_noti_ex_group_item.cc [moved from tests/unittest/src/test_noti_ex_group_item.cc with 99% similarity]
tests/noti_ex_unittest/src/test_noti_ex_icon_item.cc [moved from tests/unittest/src/test_noti_ex_icon_item.cc with 95% similarity]
tests/noti_ex_unittest/src/test_noti_ex_image_item.cc [moved from tests/unittest/src/test_noti_ex_image_item.cc with 95% similarity]
tests/noti_ex_unittest/src/test_noti_ex_input_selector_item.cc [moved from tests/unittest/src/test_noti_ex_input_selector_item.cc with 96% similarity]
tests/noti_ex_unittest/src/test_noti_ex_progress_item.cc [moved from tests/unittest/src/test_noti_ex_progress_item.cc with 97% similarity]
tests/noti_ex_unittest/src/test_noti_ex_shared_file.cc [moved from tests/unittest/src/test_noti_ex_shared_file.cc with 93% similarity]
tests/noti_ex_unittest/src/test_noti_ex_text_item.cc [moved from tests/unittest/src/test_noti_ex_text_item.cc with 97% similarity]
tests/noti_ex_unittest/src/test_noti_ex_time_item.cc [moved from tests/unittest/src/test_noti_ex_time_item.cc with 96% similarity]
tests/noti_ex_unittest/src/test_noti_ex_visibility_action.cc [moved from tests/unittest/src/test_noti_ex_visibility_action.cc with 97% similarity]
tests/noti_unittest/CMakeLists.txt [new file with mode: 0644]
tests/noti_unittest/src/test_main.cc [new file with mode: 0644]
tests/noti_unittest/src/test_notification.cc [new file with mode: 0644]
tests/noti_unittest/src/test_notification_db.cc [new file with mode: 0644]
tests/noti_unittest/src/test_notification_list.cc [new file with mode: 0644]
tests/noti_unittest/src/test_notification_noti.cc [new file with mode: 0644]
tests/noti_unittest/src/test_notification_ongoing.cc [new file with mode: 0644]
tests/noti_unittest/src/test_notification_setting.cc [new file with mode: 0644]