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
31
32
33
34
35
36
37
38
39
40
41
42
|
#include <glib/gtestutils.h>
#include <json-glib/json-types.h>
#include <string.h>
static void
test_copy (void)
{
JsonNode *node = json_node_new (JSON_NODE_NULL);
JsonNode *copy = json_node_copy (node);
g_assert_cmpint (node->type, ==, copy->type);
g_assert_cmpint (json_node_get_value_type (node), ==, json_node_get_value_type (copy));
g_assert_cmpstr (json_node_type_name (node), ==, json_node_type_name (copy));
json_node_free (copy);
json_node_free (node);
}
static void
test_null (void)
{
JsonNode *node = json_node_new (JSON_NODE_NULL);
g_assert_cmpint (node->type, ==, JSON_NODE_NULL);
g_assert_cmpint (json_node_get_value_type (node), ==, G_TYPE_INVALID);
g_assert_cmpstr (json_node_type_name (node), ==, "NULL");
json_node_free (node);
}
int
main (int argc,
char *argv[])
{
g_type_init ();
g_test_init (&argc, &argv, NULL);
g_test_add_func ("/nodes/null-node", test_null);
g_test_add_func ("/nodes/copy-node", test_copy);
return g_test_run ();
}
|