summaryrefslogtreecommitdiff
path: root/tests/pke-at-test-main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pke-at-test-main.cpp')
-rw-r--r--tests/pke-at-test-main.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/pke-at-test-main.cpp b/tests/pke-at-test-main.cpp
index 367bbf4..dba3d0f 100644
--- a/tests/pke-at-test-main.cpp
+++ b/tests/pke-at-test-main.cpp
@@ -1,5 +1,6 @@
-#include "./pke-at-test-dummy.h"
+#include "pke-at-test-dummy.h"
+#include "pke-at-test-data-parser.h"
#include <pke/pk.h>
@@ -9,10 +10,11 @@ int main(int argc, char *argv[])
(void)argv;
pk_test_group_get *fns[] = {
- pke_at_test_get_dummy
+ pke_at_test_get_dummy,
+ pke_at_test_get_data_parser,
};
- pk_test_run_test_groups(fns, 1);
+ pk_test_run_test_groups(fns, 2);
return 0;
}