Cleaned up summary reporting

Improved newlines and pluralisation
This commit is contained in:
Phil Nash 2012-02-22 09:42:34 +00:00
parent 3619cb2f09
commit e1a2480f49
2 changed files with 25 additions and 6 deletions

View file

@ -98,9 +98,9 @@ TEST_CASE( "./mixed/Misc/loops", "looped tests" )
TEST_CASE( "./succeeding/Misc/stdout,stderr", "Sends stuff to stdout and stderr" )
{
std::cout << "Some information";
std::cout << "Some information" << std::endl;
std::cerr << "An error";
std::cerr << "An error" << std::endl;
}
inline const char* makeString( bool makeNull )