aboutsummaryrefslogtreecommitdiffstats
path: root/tests/yagetest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/yagetest.cpp')
-rw-r--r--tests/yagetest.cpp23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/yagetest.cpp b/tests/yagetest.cpp
new file mode 100644
index 00000000..8d590b4a
--- /dev/null
+++ b/tests/yagetest.cpp
@@ -0,0 +1,23 @@
+/* ----------------------------------------------------------------------------
+ * 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/yage.h>
+
+TEST(YAGE, InitQuit)
+{
+ ASSERT_TRUE(yage::init());
+ yage::quit();
+}
+
+int main(int argc, char **argv)
+{
+ testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}