Occasionally I come accross a unit test that doesn\'t Assert anything. The particular example I came across this morning was testing that a log file got written to when a co
The name of the test should document this.
void TestLogDoesNotThrowException(void) { log("blah blah"); }
How does the test verify if the log is written without assertion ?