diff options
Diffstat (limited to 'tests/pke-at-test-main.cpp')
| -rw-r--r-- | tests/pke-at-test-main.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/pke-at-test-main.cpp b/tests/pke-at-test-main.cpp new file mode 100644 index 0000000..367bbf4 --- /dev/null +++ b/tests/pke-at-test-main.cpp @@ -0,0 +1,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; +} |
