| 33 | |
| 34 | static bool g_GTestEqual_has_been_called = false; |
| 35 | TEST(GTestSimpleTest, GTestEqual) |
| 36 | { |
| 37 | EXPECT_EQ(1, 1); |
| 38 | g_GTestEqual_has_been_called = true; |
| 39 | } |
| 40 | |
| 41 | TEST(GTestSimpleTest, GTestAssertEq) |
| 42 | { |
nothing calls this directly
no test coverage detected