GCC Code Coverage Report


Directory: ./
File: panels/mouse/test-gnome-mouse-test.c
Date: 2024-05-04 07:58:27
Exec Total Coverage
Lines: 0 9 0.0%
Functions: 0 1 0.0%
Branches: 0 2 0.0%

Line Branch Exec Source
1 #include <config.h>
2 #include <gtk/gtk.h>
3
4 #include "cc-mouse-resources.h"
5 #include "cc-mouse-test.h"
6
7 int main (int argc, char **argv)
8 {
9 GtkWidget *widget;
10 GtkWidget *window;
11
12 gtk_init ();
13
14 widget = cc_mouse_test_new ();
15
16 window = gtk_window_new ();
17 gtk_window_set_child (GTK_WINDOW (window), widget);
18 gtk_window_present (GTK_WINDOW (window));
19
20 while (g_list_model_get_n_items (gtk_window_get_toplevels ()) > 0)
21 g_main_context_iteration (NULL, TRUE);
22
23 return 0;
24 }
25