ssl_des/t/tests.c

19 lines
404 B
C
Raw Normal View History

2018-10-18 21:57:26 +03:00
#include "tests.h"
MunitTest md5_tests[] = {
IT("/zeroes_ctx", should_init_ctx, NULL, NULL, 0, NULL),
END_IT
};
static const MunitSuite suite = {
(char *)"/md5_suite", /* name */
md5_tests, /* tests */
NULL, /* suites */
1, /* iterations */
MUNIT_SUITE_OPTION_NONE /* options */
};
int main(int argc, char** argv)
{
return munit_suite_main(&suite, NULL, argc, argv);
}