Started YazeTests for testing the program

This commit is contained in:
scawful
2022-06-08 23:25:54 -04:00
parent 80fb4e3f0e
commit ad8223c4c8

16
tests/yaze_test.cc Normal file
View File

@@ -0,0 +1,16 @@
#define SDL_MAIN_HANDLED
#include <gtest/gtest.h>
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();
}