aboutsummaryrefslogtreecommitdiffstats
path: root/tests/yagetest.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-09-09 06:18:53 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-09-09 06:21:36 +0100
commit660996bd750dbb5fcdce85845ee6b260f3ed23eb (patch)
treedc4f9931adf728379e571748eb954db1cf2eb65b /tests/yagetest.cpp
parenta9893965737269512e9c75e87938312d707cb351 (diff)
downloadYAGE-660996bd750dbb5fcdce85845ee6b260f3ed23eb.tar.gz
YAGE-660996bd750dbb5fcdce85845ee6b260f3ed23eb.zip
Renaming test to tests
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();
+}