mirror of
https://github.com/jorenchik/testing-spring-2024.git
synced 2025-10-21 20:10:36 +00:00
11 lines
186 B
C++
11 lines
186 B
C++
#include "gtest/gtest.h"
|
|
|
|
TEST(ExampleTest, Example) {
|
|
EXPECT_EQ(1, 1);
|
|
}
|
|
|
|
int main(int argc, char *argv[]) {
|
|
testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|