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_application_window_new (void)
{
GtkWidget *window = adw_application_window_new (NULL);
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/ApplicationWindow/new", test_adw_application_window_new);
return g_test_run();
}
|