summaryrefslogtreecommitdiff
path: root/tests/pke-at-test-main.cpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2025-10-16 14:11:28 -0400
committerJonathan Bradley <jcb@pikum.xyz>2025-10-16 14:11:36 -0400
commitfb575049567ba037cf30f43d99a67fd1981b59a4 (patch)
tree38d36f7541e576355f33b44c8f2677b42f4e2a9f /tests/pke-at-test-main.cpp
parent6d53452ebc24287a72eedb9a2cc3f9e21c55362c (diff)
pke-at-test: first-pass using pktst
Diffstat (limited to 'tests/pke-at-test-main.cpp')
-rw-r--r--tests/pke-at-test-main.cpp18
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;
+}