Add exclude section for impossible lines to be excuted in TCT
[platform/core/api/inputmethod.git] / inputmethod / src / inputmethod.cpp
index 40664a8..ef4ac26 100644 (file)
@@ -1567,6 +1567,7 @@ EXPORT_API int ime_set_size(int portrait_width, int portrait_height, int landsca
     //LCOV_EXCL_STOP
 }
 
+//LCOV_EXCL_START
 EXPORT_API int ime_set_native_window_size(Ecore_Wl2_Window *window, int portrait_width, int portrait_height, int landscape_width, int landscape_height)
 {
     ime_error_e retVal = IME_ERROR_NONE;
@@ -1581,7 +1582,6 @@ EXPORT_API int ime_set_native_window_size(Ecore_Wl2_Window *window, int portrait
         return IME_ERROR_NOT_RUNNING;
     }
 
-    //LCOV_EXCL_START
     retVal = _check_privilege();
     if (retVal != IME_ERROR_NONE) return retVal;
 
@@ -1591,8 +1591,8 @@ EXPORT_API int ime_set_native_window_size(Ecore_Wl2_Window *window, int portrait
     ecore_wl2_window_rotation_geometry_set(window, 270, 0, 0, landscape_height, landscape_width);
 
     return IME_ERROR_NONE;
-    //LCOV_EXCL_STOP
 }
+//LCOV_EXCL_STOP
 
 EXPORT_API int ime_create_option_window(void)
 {