- Timestamp:
- 2014-07-24T03:51:07Z (10 years ago)
- Branches:
- master
- Children:
- 1783ab6
- Parents:
- 778ea8a
- git-author:
- GRMrGecko <GRMrGecko@…> (24-07-14 03:51:07)
- git-committer:
- dequis <dx@…> (24-07-14 03:51:07)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/check_jabber_util.c
r778ea8a r757515a 95 95 } 96 96 97 static void check_compareJID(int l) 98 { 99 fail_unless( jabber_compare_jid( "bugtest@google.com/B", "bugtest@google.com/A" ) ); 100 fail_if( jabber_compare_jid( "bugtest1@google.com/B", "bugtest@google.com/A" ) ); 101 fail_if( jabber_compare_jid( "bugtest@google.com/B", "bugtest1@google.com/A" ) ); 102 fail_if( jabber_compare_jid( "bugtest1@google.com/B", "bugtest2@google.com/A" ) ); 103 fail_unless( jabber_compare_jid( "bugtest@google.com/A", "bugtest@google.com/A" ) ); 104 fail_if( jabber_compare_jid( "", "bugtest@google.com/A" ) ); 105 } 106 97 107 Suite *jabber_util_suite (void) 98 108 { … … 110 120 suite_add_tcase (s, tc_core); 111 121 tcase_add_test (tc_core, check_buddy_add); 122 tcase_add_test (tc_core, check_compareJID); 112 123 return s; 113 124 }
Note: See TracChangeset
for help on using the changeset viewer.