aboutsummaryrefslogtreecommitdiffstats
path: root/test/yagetest.cpp
diff options
context:
space:
mode:
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();
+}