File: test-window.c

package info (click to toggle)
libadwaita-1 1.8.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,272 kB
  • sloc: ansic: 86,112; xml: 189; python: 60; sh: 30; makefile: 21; javascript: 9
file content (30 lines) | stat: -rw-r--r-- 479 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * Copyright (C) 2020 Alice Mikhaylenko <alicem@gnome.org>
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 */

#include <adwaita.h>


static void
test_adw_window_new (void)
{
  GtkWidget *window = adw_window_new ();
  g_assert_nonnull (window);

  g_assert_finalize_object (window);
}


int
main (int   argc,
      char *argv[])
{
  gtk_test_init (&argc, &argv, NULL);
  adw_init ();

  g_test_add_func("/Adwaita/Window/new", test_adw_window_new);

  return g_test_run();
}