원문URL : http://www.bogotobogo.com/cplusplus/google_unit_test_gtest.php Google Unit Test (GTest)The Framework of Google C++ Testing is based on xUnit architecture. It is a cross platform system that provides automatic test discovery. In other words, we don't have to enumerate all of the test in our test suite manually. It supports a rich set of assertions such as fatal assertions (ASSERT_), non-f..