From 85a2ba407b1ae285b4080e14f8a18ecf4ec7da2c Mon Sep 17 00:00:00 2001 From: Jonathan Bradley Date: Wed, 12 Mar 2025 17:26:48 -0400 Subject: pke: more testing features + more ui flex work --- tests/pke-test-dummy.cpp | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tests/pke-test-dummy.cpp (limited to 'tests/pke-test-dummy.cpp') 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; +} -- cgit v1.2.3