diff options
author | ThomasAvans <tv.intanker@student.avans.nl> | 2024-04-10 16:42:55 +0200 |
---|---|---|
committer | ThomasAvans <tv.intanker@student.avans.nl> | 2024-04-10 16:42:55 +0200 |
commit | 4f88b6ba253ddb34fdc5049ab3044516df73257c (patch) | |
tree | 77986353c7ee182405fd0bd978f23022c9f90fc8 /test/ExampleTest.cpp | |
parent | 4b405fe0f6dbf6c6e377c1b04f20be27d7b7a761 (diff) |
Setup the googletest testing framework
Diffstat (limited to 'test/ExampleTest.cpp')
-rw-r--r-- | test/ExampleTest.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/ExampleTest.cpp b/test/ExampleTest.cpp new file mode 100644 index 0000000..a3909f5 --- /dev/null +++ b/test/ExampleTest.cpp @@ -0,0 +1,7 @@ +#include <gtest/gtest.h> + +class ExampleTest : public testing::Test { +protected: +}; + +TEST_F(ExampleTest, Test) { EXPECT_EQ(5, 5); }
\ No newline at end of file |