summaryrefslogtreecommitdiff
path: root/src/unittest/test.cpp
diff options
context:
space:
mode:
authorVasile Vilvoiu <vasi@vilvoiu.ro>2021-11-28 22:44:27 +0200
committerVasile Vilvoiu <vasi@vilvoiu.ro>2021-11-28 22:44:27 +0200
commit8f7ceb6ecf1765e6515687b1971fcbd127818176 (patch)
tree0b245c6969f269c8f6aa03d04988517f1ca273ac /src/unittest/test.cpp
parentfa14e043a604dfa17f45cf401cbcbeb4fb33693c (diff)
Encoder unit tests.
Closes #11.
Diffstat (limited to 'src/unittest/test.cpp')
-rw-r--r--src/unittest/test.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/unittest/test.cpp b/src/unittest/test.cpp
new file mode 100644
index 0000000..6295664
--- /dev/null
+++ b/src/unittest/test.cpp
@@ -0,0 +1,13 @@
+/*
+ * Copyright (c) 2021 Vasile Vilvoiu <vasi@vilvoiu.ro>
+ *
+ * libecbor is free software; you can redistribute it and/or modify
+ * it under the terms of the MIT license. See LICENSE for details.
+ */
+#include "gtest/gtest.h"
+
+int main(int argc, char **argv)
+{
+ ::testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}