summaryrefslogtreecommitdiffstats
path: root/subprojects/libhandy/tests/test-application-window.c
blob: a745de6e18d8bd457547f72e429c838d445ea9b7 (plain)
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 Alexander Mikhaylenko <alexm@gnome.org>
 *
 * SPDX-License-Identifier: LGPL-2.1+
 */

#include <handy.h>


static void
test_hdy_application_window_new (void)
{
  g_autoptr (GtkWidget) window = NULL;

  window = g_object_ref_sink (hdy_application_window_new ());
  g_assert_nonnull (window);
}


gint
main (gint argc,
      gchar *argv[])
{
  gtk_test_init (&argc, &argv, NULL);
  hdy_init ();

  g_test_add_func("/Handy/ApplicationWindow/new", test_hdy_application_window_new);

  return g_test_run();
}