test-message-id.c revision 94fc6781711341cb3af587af236d85c74e5b1a1d
/* Copyright (c) 2007-2011 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "message-id.h"
#include "test-common.h"
static void test_message_id_get_next(void)
{
const char *input[] = {
"<foo@bar>",
"<foo@bar>,skipped,<foo2@bar2>",
"(c) < (c) foo (c) @ (c) bar (c) > (c)",
"<\"foo 2\"@bar>"
};
const char *output[] = {
"foo@bar", NULL,
"foo@bar", NULL,
"foo 2@bar", NULL
};
const char *msgid, *next_msgid;
unsigned int i, j;
test_begin("message id parser");
for (i = 0, j = 0; i < N_ELEMENTS(input); i++) {
break;
}
}
test_end();
}
int main(void)
{
static void (*test_functions[])(void) = {
};
return test_run(test_functions);
}