summaryrefslogtreecommitdiff
path: root/tests/pke-at-test-main.cpp
blob: 367bbf4acb29b743f08c2816915c73fdbba0e325 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

#include "./pke-at-test-dummy.h"

#include <pke/pk.h>

int main(int argc, char *argv[])
{
	(void)argc;
	(void)argv;

	pk_test_group_get *fns[] = {
		pke_at_test_get_dummy
	};

	pk_test_run_test_groups(fns, 1);

	return 0;
}