Change unittest package name and improves code coverage
[platform/core/appfw/appcore-widget.git] / include / widget_app.hpp
index fb9a05d..f0fc3c7 100644 (file)
@@ -97,6 +97,7 @@ class WidgetAppBase : public app_common::AppBase<
   int Run(int argc, char** argv,
       std::unique_ptr<InstanceBase::Factory> factory) {
     factory_ = std::move(factory);
+/* LCOV_EXCL_START */
     widget_app_lifecycle_callback_s callback = {
       create : [](void *user_data) -> widget_class_h {
         WidgetAppBase* b = static_cast<WidgetAppBase*>(user_data);
@@ -170,6 +171,7 @@ class WidgetAppBase : public app_common::AppBase<
         b->OnTerminate();
       }
     };
+/* LCOV_EXCL_STOP */
 
     return widget_app_main(argc, argv, &callback, this);
   }