mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-26 13:41:07 +00:00
testsuite: Improve coverage
This commit is contained in:
parent
1702a4c223
commit
9b78bc4af7
@ -9,6 +9,21 @@ test_init (void)
|
||||
g_assert (gtk_is_initialized () == TRUE);
|
||||
}
|
||||
|
||||
static void
|
||||
test_version (void)
|
||||
{
|
||||
g_assert_cmpuint (gtk_get_major_version (), ==, GTK_MAJOR_VERSION);
|
||||
g_assert_cmpuint (gtk_get_minor_version (), ==, GTK_MINOR_VERSION);
|
||||
g_assert_cmpuint (gtk_get_micro_version (), ==, GTK_MICRO_VERSION);
|
||||
g_assert_cmpuint (gtk_get_binary_age (), ==, GTK_BINARY_AGE);
|
||||
g_assert_cmpuint (gtk_get_interface_age (), ==, GTK_INTERFACE_AGE);
|
||||
|
||||
g_assert_null (gtk_check_version (GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION));
|
||||
g_assert_nonnull (gtk_check_version (5, 0, 0));
|
||||
g_assert_nonnull (gtk_check_version (1, 0, 0));
|
||||
g_assert_nonnull (gtk_check_version (3, 1000, 10));
|
||||
}
|
||||
|
||||
int
|
||||
main (int argc, char *argv[])
|
||||
{
|
||||
@ -18,6 +33,7 @@ main (int argc, char *argv[])
|
||||
setlocale (LC_ALL, "C");
|
||||
|
||||
g_test_add_func ("/main/init", test_init);
|
||||
g_test_add_func ("/main/version", test_version);
|
||||
|
||||
return g_test_run ();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user