/* Copyright (c) 2014-2018 Dovecot authors, see the included COPYING file */
#include "lib.h"
#include "quota-private.h"
#include "test-common.h"
struct test {
bool is_over;
};
static void test_quota_transaction_is_over(void)
{
/* first test only with new_size=1. these are used for both
count and bytes tests: */
/* limit, init, diff, new */
/* these are for bytes tests: */
/* limit, init, diff, new */
};
unsigned int i;
test_begin("quota transaction is over (count)");
for (i = 0; i < N_ELEMENTS(tests); i++) {
continue;
else {
}
}
test_end();
test_begin("quota transaction is over (bytes)");
for (i = 0; i < N_ELEMENTS(tests); i++) {
else {
}
}
test_end();
}
int main(void)
{
static void (*const test_functions[])(void) = {
};
return test_run(test_functions);
}