tests/ecore_wl2: Add test for ecore_wl2_window_surface_get function
authorChristopher Michael <cp.michael@samsung.com>
Mon, 22 Jul 2019 12:37:08 +0000 (08:37 -0400)
committerSangHyeon Jade Lee <sh10233.lee@samsung.com>
Tue, 23 Jul 2019 05:09:40 +0000 (14:09 +0900)
ref T8016

src/tests/ecore_wl2/ecore_wl2_test_window.c

index 4608f76..8bcca9e 100644 (file)
@@ -41,6 +41,23 @@ EFL_START_TEST(wl2_window_new)
 }
 EFL_END_TEST
 
+EFL_START_TEST(wl2_window_surface_get)
+{
+   Ecore_Wl2_Display *disp;
+   Ecore_Wl2_Window *win;
+   struct wl_surface *surf;
+
+   disp = _display_connect();
+   ck_assert(disp != NULL);
+
+   win = _window_create(disp);
+   ck_assert(win != NULL);
+
+   surf = ecore_wl2_window_surface_get(win);
+   ck_assert(surf != NULL);
+}
+EFL_END_TEST
+
 void
 ecore_wl2_test_window(TCase *tc)
 {
@@ -48,5 +65,6 @@ ecore_wl2_test_window(TCase *tc)
      {
         /* window tests can only run if there is an existing compositor */
         tcase_add_test(tc, wl2_window_new);
+        tcase_add_test(tc, wl2_window_surface_get);
      }
 }