[pango/test-coverage: 14/22] tests: Add tests for version apis
- From: Matthias Clasen <matthiasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pango/test-coverage: 14/22] tests: Add tests for version apis
- Date: Mon, 28 Jun 2021 04:05:16 +0000 (UTC)
commit f90cc192775464b5ec867fdc8b9c7e9cae3ecae1
Author: Matthias Clasen <mclasen redhat com>
Date: Sat Jun 26 22:22:31 2021 -0400
tests: Add tests for version apis
Check the previous change.
tests/testmisc.c | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
---
diff --git a/tests/testmisc.c b/tests/testmisc.c
index b4467a63..fcd72018 100644
--- a/tests/testmisc.c
+++ b/tests/testmisc.c
@@ -156,6 +156,29 @@ test_attr_list_update (void)
pango_attr_list_unref (list);
}
+static void
+test_version_info (void)
+{
+ char *str;
+
+ g_assert_null (pango_version_check (1, 0, 0));
+ g_assert_null (pango_version_check (PANGO_VERSION_MAJOR, PANGO_VERSION_MINOR, PANGO_VERSION_MICRO));
+ g_assert_nonnull (pango_version_check (2, 0, 0));
+
+ str = g_strdup_printf ("%d.%d.%d", PANGO_VERSION_MAJOR, PANGO_VERSION_MINOR, PANGO_VERSION_MICRO);
+ g_assert_cmpstr (str, ==, pango_version_string ());
+ g_free (str);
+}
+
+static void
+test_is_zero_width (void)
+{
+ g_assert_true (pango_is_zero_width (0x00ad));
+ g_assert_true (pango_is_zero_width (0x034f));
+ g_assert_false (pango_is_zero_width ('a'));
+ g_assert_false (pango_is_zero_width ('c'));
+}
+
int
main (int argc, char *argv[])
{
@@ -168,6 +191,8 @@ main (int argc, char *argv[])
g_test_add_func ("/language/emoji-crash", test_language_emoji_crash);
g_test_add_func ("/layout/line-height", test_line_height);
g_test_add_func ("/attr-list/update", test_attr_list_update);
+ g_test_add_func ("/version-info", test_version_info);
+ g_test_add_func ("/is-zerowidth", test_is_zero_width);
return g_test_run ();
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]