From fb8197839c0bebc20fd68ee3f280da934c49c473 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 22 Dec 2017 21:16:02 +0000 Subject: Removing editor and refactoring code. --- tests/window/test.cpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tests/window/test.cpp (limited to 'tests/window/test.cpp') diff --git a/tests/window/test.cpp b/tests/window/test.cpp new file mode 100644 index 00000000..40b7e664 --- /dev/null +++ b/tests/window/test.cpp @@ -0,0 +1,21 @@ +/** --------------------------------------------------------------------------- + * @file: windowtest.cpp + * + * Copyright (c) 2017 Yann Herklotz Grave + * MIT License, see LICENSE file for more details. + * ---------------------------------------------------------------------------- + */ + +#include +#include + +TEST(Window, Open) +{ + ASSERT_TRUE(true); +} + +int main(int argc, char **argv) +{ + testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} -- cgit