From 94a9fe4f02872bfb4fcb1d115194dbb3f3061cc4 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Thu, 13 Oct 2011 01:12:04 +0200 Subject: [xml saml-2.0] add a class to handle the KeyInfoConfirmationData type * use a direct mapping to map this class to SubjectConfirmationData node having the xsi:type attribute. * overload get_xmlNode method to add the xsi:type attribute on output. --- tests/basic_tests.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/basic_tests.c') diff --git a/tests/basic_tests.c b/tests/basic_tests.c index 7f3657c9..e0158055 100644 --- a/tests/basic_tests.c +++ b/tests/basic_tests.c @@ -1873,6 +1873,10 @@ START_TEST(test10_test_alldumps) lasso_release_doc(xmldoc); ++iter; } + /* test serialization / deserialization of KeyInfoConfirmationDataType */ + node = LASSO_NODE(lasso_saml2_key_info_confirmation_data_type_new()); + printf("%s\n", lasso_node_debug(node, 10)); + lasso_release_gobject(node); } END_TEST -- cgit