#include #include TEST(AssertDemo, AssertIsFatal) { ASSERT_TRUE('X' == 'U'); ASSERT_EQ('X', 'U'); std::cout << "succeeded" << std::endl; }