/* Copyright (c) 2014-2018 Dovecot authors, see the included COPYING file */
#include "test-lib.h"
#include "wildcard-match.h"
static const struct {
const char *data;
const char *mask;
bool result;
} tests[] = {
};
void test_wildcard_match(void)
{
unsigned int i;
test_begin("wildcard_match()");
for (i = 0; i < N_ELEMENTS(tests); i++) {
}
test_end();
}