diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2025-03-12 17:26:48 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2025-03-12 17:26:48 -0400 |
| commit | 85a2ba407b1ae285b4080e14f8a18ecf4ec7da2c (patch) | |
| tree | 0abe7044b6af5820e9f3c143733047b254e78e15 /tests/pke-test-dummy.c | |
| parent | 68ef51ed3247dc4e7bd5970b9279a7d6a938ca52 (diff) | |
pke: more testing features + more ui flex work
Diffstat (limited to 'tests/pke-test-dummy.c')
| -rw-r--r-- | tests/pke-test-dummy.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/pke-test-dummy.c b/tests/pke-test-dummy.c deleted file mode 100644 index ea92c34..0000000 --- a/tests/pke-test-dummy.c +++ /dev/null @@ -1,22 +0,0 @@ - -#include "./pke-test-dummy.h" - -int pke_test_dummy_001() { - return 0; -} - -struct pke_test_group *pke_test_dummy_get_group() { - static struct pke_test tests[1] = { - { - .title = "test 001", - .func = pke_test_dummy_001, - .expected_result = 0, - } - }; - static struct pke_test_group group = {0}; - group.title = "dummy test"; - group.n_tests = 1; - group.tests = &tests[0]; - - return &group; -} |
