Finding gaps in the testing
We really need more tests. Right now, we only have two logging tests: one for simple log messages and the other for more complicated log messages. The two tests look like this:
TEST("Simple message can be logged")
{
std::string message = "simple ";
message += Util::randomString();
MereMemo::log() << message << " with more text.";
bool result = Util::isTextInFile(message, "application.log");
CONFIRM_TRUE(result);
}
TEST("Complicated message can be logged")
{
std::string message = "complicated ";
message += Util::randomString();
MereMemo::log() << message
<< " double=" << 3.14
...