aboutsummaryrefslogtreecommitdiff
path: root/test.cc
diff options
context:
space:
mode:
authorAdrian Kummerlaender2015-01-15 19:09:55 +0100
committerAdrian Kummerlaender2015-01-15 19:09:55 +0100
commitf32004323eae427cba2d25d01836367b291e522d (patch)
tree95481f9fb5558b6e56e3796b4a0f62e5ac7a1ed7 /test.cc
downloadTypeAsValue-f32004323eae427cba2d25d01836367b291e522d.tar
TypeAsValue-f32004323eae427cba2d25d01836367b291e522d.tar.gz
TypeAsValue-f32004323eae427cba2d25d01836367b291e522d.tar.bz2
TypeAsValue-f32004323eae427cba2d25d01836367b291e522d.tar.lz
TypeAsValue-f32004323eae427cba2d25d01836367b291e522d.tar.xz
TypeAsValue-f32004323eae427cba2d25d01836367b291e522d.tar.zst
TypeAsValue-f32004323eae427cba2d25d01836367b291e522d.zip
Initial project structure
Diffstat (limited to 'test.cc')
-rw-r--r--test.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/test.cc b/test.cc
new file mode 100644
index 0000000..f70f5ac
--- /dev/null
+++ b/test.cc
@@ -0,0 +1,7 @@
+#include "gtest/gtest.h"
+
+int main(int argc, char **argv) {
+ testing::InitGoogleTest(&argc, argv);
+
+ return RUN_ALL_TESTS();
+}