rename tests to test

This commit is contained in:
Justin Scofield
2022-06-15 20:49:43 -04:00
parent 065a971776
commit 70c59d0e96
3 changed files with 4 additions and 4 deletions

16
test/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();
}