Added clog test

This commit is contained in:
Phil Nash 2017-12-05 17:48:15 +00:00
parent 533cdc6bc1
commit 7c5a21fb7d
5 changed files with 6 additions and 1 deletions

View file

@ -148,8 +148,8 @@ TEST_CASE( "looped tests", "[.][failing]" ) {
TEST_CASE( "Sends stuff to stdout and stderr", "[.]" ) {
std::cout << "A string sent directly to stdout" << std::endl;
std::cerr << "A string sent directly to stderr" << std::endl;
std::clog << "A string sent to stderr via clog" << std::endl;
}
TEST_CASE( "null strings" ) {