void test_mutt_idna_intl_to_local(void)
{
// char * mutt_idna_intl_to_local(const char *user, const char *domain, int flags);
+
+ {
+ TEST_CHECK(!mutt_idna_intl_to_local(NULL, "banana", 0));
+ }
+
+ {
+ TEST_CHECK(!mutt_idna_intl_to_local("apple", NULL, 0));
+ }
}
void test_mutt_idna_local_to_intl(void)
{
// char * mutt_idna_local_to_intl(const char *user, const char *domain);
+
+ {
+ TEST_CHECK(!mutt_idna_local_to_intl(NULL, "banana"));
+ }
+
+ {
+ TEST_CHECK(!mutt_idna_local_to_intl("apple", NULL));
+ }
}
void test_mutt_idna_to_ascii_lz(void)
{
// int mutt_idna_to_ascii_lz(const char *input, char **output, int flags);
+
+ {
+ char *out = NULL;
+ TEST_CHECK(mutt_idna_to_ascii_lz(NULL, &out, 0) == -1);
+ }
+
+ {
+ TEST_CHECK(mutt_idna_to_ascii_lz("apple", NULL, 0) == -1);
+ }
}