aboutsummaryrefslogtreecommitdiffstats
path: root/test/yagetest.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-08-12 13:59:54 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-08-12 13:59:54 +0100
commitb3d29409c0ec90a32a91243675a3f55617cf63e1 (patch)
tree562ed4ac0c9e3651c3a907f145f220ed738518db /test/yagetest.cpp
parent3ce4865390924d13c525938c5c60c73650564a50 (diff)
downloadYAGE-b3d29409c0ec90a32a91243675a3f55617cf63e1.tar.gz
YAGE-b3d29409c0ec90a32a91243675a3f55617cf63e1.zip
More tests and improving header adding
Diffstat (limited to 'test/yagetest.cpp')
-rw-r--r--test/yagetest.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/yagetest.cpp b/test/yagetest.cpp
new file mode 100644
index 00000000..8ca6c83e
--- /dev/null
+++ b/test/yagetest.cpp
@@ -0,0 +1,20 @@
+/* ----------------------------------------------------------------------------
+ * yagetest.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
+ * See file LICENSE for more details
+ * ----------------------------------------------------------------------------
+ */
+
+#include "gtest/gtest.h"
+
+#include "yage.hpp"
+
+TEST(YAGE, InitQuit) {
+ ASSERT_TRUE(true);
+}
+
+int main(int argc, char** argv) {
+ testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}