Top | ![]() |
![]() |
![]() |
![]() |
Assertion Utilities for GHashTableAssertion Utilities for GHashTable — Utilities to write assertions related to GHashTable more easily. |
To write assertions, you need to check equality and show expected and actual values.
The utilities help you to write assertions that are related to GHashTable.
gboolean gcut_hash_table_equal (GHashTable *hash1
,GHashTable *hash2
,GEqualFunc equal_func
);
Compares two GHashTable, hash1
and
hash2
. equal_func
is called for each values of
the same key of hash1
and hash2
.
e.g.:
TODO
hash1 |
a GHashTable to be compared. |
|
hash2 |
a GHashTable to be compared. |
|
equal_func |
a function that compares two values. |
TRUE if all same key's values of hash1
and
hash2
are reported TRUE by equal_func
, FALSE
otherwise.
Since 1.0.5
gchar * gcut_hash_table_inspect (GHashTable *hash
,GCutInspectFunction key_inspect_func
,GCutInspectFunction value_inspect_func
,gpointer user_data
);
Inspects hash
. Each key of hash
is inspected by
key_inspect_func
and each value of hash
is inspected by
value_inspect_func
. The returned string should be freed
when no longer needed.
e.g.:
TODO
hash |
a GHashTable to be inspected. |
|
key_inspect_func |
a function that inspects each key. |
|
value_inspect_func |
a function that inspects each value. |
|
user_data |
user data to pass to the function. |
Since 1.0.5
gchar * gcut_hash_table_inspect_sorted (GHashTable *hash
,GCutInspectFunction key_inspect_func
,GCutInspectFunction value_inspect_func
,GCompareFunc key_compare_func
,gpointer user_data
);
Sorts hash
as key by key_compare_func
and inspects
it. Each key of hash
is inspected by key_inspect_func
and each value of hash
is inspected by
value_inspect_func
. The returned string should be freed
when no longer needed.
If key_compare_func
is NULL
, hash
isn't sorted. It is
the same behavior as gcut_hash_table_inspect()
.
e.g.:
TODO
hash |
a GHashTable to be inspected and sorted. |
|
key_inspect_func |
a function that inspects each key. |
|
value_inspect_func |
a function that inspects each value. |
|
key_compare_func |
a function that compares each key. |
|
user_data |
user data to pass to the function. |
Since 1.0.9
gboolean gcut_hash_table_string_equal (GHashTable *hash1
,GHashTable *hash2
);
Compares two GHashTable, hash1
and
hash2
. hash1
and hash2
should have string key and
string value.
Since 1.0.5
gchar *
gcut_hash_table_string_string_inspect (GHashTable *hash
);
Inspects hash
. hash
should have string key and string
value. The returned string should be freed when no longer
needed.
Since 1.0.5
GHashTable *
gcut_hash_table_string_string_copy (GHashTable *hash
);
Copy hash
. hash
should have string key and string
value. The returned hash
should be freed by
g_hash_table_unref()
.
Since 1.0.8