From ad8223c4c8a3b089a061195c975985440dd7f826 Mon Sep 17 00:00:00 2001 From: scawful Date: Wed, 8 Jun 2022 23:25:54 -0400 Subject: [PATCH] Started YazeTests for testing the program --- tests/yaze_test.cc | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/yaze_test.cc diff --git a/tests/yaze_test.cc b/tests/yaze_test.cc new file mode 100644 index 00000000..9e6df403 --- /dev/null +++ b/tests/yaze_test.cc @@ -0,0 +1,16 @@ +#define SDL_MAIN_HANDLED +#include + +namespace YazeTests { + +TEST(YazeApplicationTests, TemplateTest) { + int i = 0; + ASSERT_EQ(i, 0); +} + +} // namespace YazeTests + +int main(int argc, char* argv[]) { + ::testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} \ No newline at end of file