aboutsummaryrefslogtreecommitdiffstats
path: root/tests/windowtest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/windowtest.cpp')
-rw-r--r--tests/windowtest.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/windowtest.cpp b/tests/windowtest.cpp
new file mode 100644
index 00000000..e6739720
--- /dev/null
+++ b/tests/windowtest.cpp
@@ -0,0 +1,21 @@
+/* ----------------------------------------------------------------------------
+ * windowtest.cpp
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
+ * ----------------------------------------------------------------------------
+ */
+
+#include <YAGE/yage.h>
+#include <gtest/gtest.h>
+
+TEST(Window, Open)
+{
+ ASSERT_TRUE(true);
+}
+
+int main(int argc, char **argv)
+{
+ testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}