From 8f7ceb6ecf1765e6515687b1971fcbd127818176 Mon Sep 17 00:00:00 2001 From: Vasile Vilvoiu Date: Sun, 28 Nov 2021 22:44:27 +0200 Subject: Encoder unit tests. Closes #11. --- src/unittest/test.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/unittest/test.cpp (limited to 'src/unittest/test.cpp') 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 + * + * 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(); +} -- cgit v1.2.3