File: test-get-namespace-on-non-layer-window.c

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

static GtkWindow* window;

static void callback_0() {
    window = create_default_window();
    const char *name_space = gtk_layer_get_namespace(window);
    ASSERT_STR_EQ(name_space, "gtk4-layer-shell");
}

TEST_CALLBACKS(
    callback_0,
)