diff options
Diffstat (limited to 'Tests/GoogleTest/Test/main3.cxx')
-rw-r--r-- | Tests/GoogleTest/Test/main3.cxx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Tests/GoogleTest/Test/main3.cxx b/Tests/GoogleTest/Test/main3.cxx new file mode 100644 index 0000000..98ce13c --- /dev/null +++ b/Tests/GoogleTest/Test/main3.cxx @@ -0,0 +1,11 @@ +#include <gtest/gtest.h> + +TEST(GoogleTest, Foo) +{ + ASSERT_TRUE(true); +} + +TEST(GoogleTest, Bar) +{ + ASSERT_TRUE(true); +} |