File: test-get-namespace-custom-namespace.c

package info (click to toggle)
gtk4-layer-shell 1.0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 616 kB
  • sloc: ansic: 3,537; xml: 417; python: 333; makefile: 9
file content (17 lines) | stat: -rw-r--r-- 388 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "integration-test-common.h"

static GtkWindow* window;

static void callback_0()
{
    window = create_default_window();
    gtk_layer_init_for_window(window);
    gtk_layer_set_namespace(window, "foobar");
    gtk_window_present(window);
    const char *name_space = gtk_layer_get_namespace(window);
    ASSERT_STR_EQ(name_space, "foobar");
}

TEST_CALLBACKS(
    callback_0,
)