summaryrefslogtreecommitdiff
path: root/tests/pke-test-dummy.cpp
diff options
context:
space:
mode:
authorJonathan Bradley <jcb@pikum.xyz>2025-03-12 17:26:48 -0400
committerJonathan Bradley <jcb@pikum.xyz>2025-03-12 17:26:48 -0400
commit85a2ba407b1ae285b4080e14f8a18ecf4ec7da2c (patch)
tree0abe7044b6af5820e9f3c143733047b254e78e15 /tests/pke-test-dummy.cpp
parent68ef51ed3247dc4e7bd5970b9279a7d6a938ca52 (diff)
pke: more testing features + more ui flex work
Diffstat (limited to 'tests/pke-test-dummy.cpp')
-rw-r--r--tests/pke-test-dummy.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/pke-test-dummy.cpp b/tests/pke-test-dummy.cpp
new file mode 100644
index 0000000..a7e2ddc
--- /dev/null
+++ b/tests/pke-test-dummy.cpp
@@ -0,0 +1,23 @@
+
+#include "./pke-test-dummy.h"
+
+int pke_test_dummy_001() {
+ return 0;
+}
+
+struct pke_test_group *pke_test_dummy_get_group() {
+ static const uint64_t test_count = 1;
+ static struct pke_test tests[test_count] = {
+ {
+ .title = "test 001",
+ .func = pke_test_dummy_001,
+ .expected_result = 0,
+ }
+ };
+ static struct pke_test_group group = {};
+ group.title = "dummy test";
+ group.n_tests = test_count;
+ group.tests = &tests[0];
+
+ return &group;
+}