type of googletest assert
时间: 2024-06-05 17:08:23 浏览: 107
googletest-1.14.0
The type of GoogleTest assert is a set of macros that are used to test conditions in C++ code. These macros are typically used in unit testing frameworks to verify that a particular piece of code behaves as expected under different scenarios. The GoogleTest assert macros include ASSERT_TRUE, ASSERT_FALSE, ASSERT_EQ, ASSERT_NE, ASSERT_LT, ASSERT_LE, ASSERT_GT, ASSERT_GE, ASSERT_NEAR, ASSERT_THROW, ASSERT_NO_THROW, and ASSERT_ANY_THROW.
阅读全文