test-pop3-migration-plugin.c revision cefa6f3df2f30d84f8279109e9152cada9f67e16
/* Copyright (c) 2015-2017 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "sha1.h"
#include "hex-binary.h"
#include "istream.h"
#include "test-common.h"
#include "pop3-migration-plugin.h"
static void test_pop3_migration_get_hdr_sha1(void)
{
static const struct {
const char *input;
const char *sha1;
bool have_eoh;
} tests[] = {
};
unsigned char digest[SHA1_RESULTLEN];
unsigned int i;
bool have_eoh;
test_begin("pop3 migration get hdr sha1");
for (i = 0; i < N_ELEMENTS(tests); i++) {
}
test_end();
}
int main(void)
{
static void (*const test_functions[])(void) = {
};
return test_run(test_functions);
}