Replies: 4 comments 6 replies
-
Organization of testsA disadvantage of Google Test is that titles of sections have to be valid identifiers. It even has a whole paragraph on what is a valid identifier. GoogleTest seems to use organization very similar to Igloo, with the |
Beta Was this translation helpful? Give feedback.
-
Assertion messagesGoogleTest supports additional assertion messages by |
Beta Was this translation helpful? Give feedback.
-
ReporterThe reporter seems to work well for:
When a SUT or a test crashes, test run is immediately interrupted. The report preceding the crash is produced normally, but it breaks abruptly whether a crash occurs in an assertion or not (see |
Beta Was this translation helpful? Give feedback.
-
BuildGoogle Test, as opposed to header-only libraries like for example Snowhouse, is a library which needs to be linked with tests:
Locally i work with the prebuilt static library, but I do not know which of the above options will be the best for CW runner. I expect prebuilding the library would save some time for user solutions. |
Beta Was this translation helpful? Give feedback.
-
I managed to build Google Test locally and run the example test suite. I will use this discussion as an area to dump potentially interesting facts I managed to figure out.
Beta Was this translation helpful? Give feedback.
All reactions