catch2/Test/MessageTests.cpp

51 lines
1.3 KiB
C++
Raw Normal View History

2010-11-10 00:24:00 +01:00
/*
* MessageTests.cpp
* Catch - Test
*
* Created by Phil on 09/11/2010.
* Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
*
* Distributed under the Boost Software License, Version 1.0. (See accompanying
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
*
*/
2010-11-12 09:12:01 +01:00
#include "../catch.hpp"
2010-11-10 00:24:00 +01:00
TEST_CASE( "./succeeding/message", "INFO and WARN do not abort tests" )
2010-11-10 00:24:00 +01:00
{
2010-12-27 23:05:13 +01:00
INFO( "this is a " << "message" ); // This should output the message if a failure occurs
WARN( "this is a " << "warning" ); // This should always output the message but then continue
2010-11-10 00:24:00 +01:00
}
TEST_CASE( "./failing/message/info/1", "INFO gets logged on failure" )
2010-12-27 23:05:13 +01:00
{
INFO( "this message should be logged" );
INFO( "so should this" );
2010-12-27 23:05:13 +01:00
int a = 2;
REQUIRE( a == 1 );
}
TEST_CASE( "./mixed/message/info/2", "INFO gets logged on failure" )
2010-12-27 23:05:13 +01:00
{
INFO( "this message should be logged" );
2010-12-27 23:05:13 +01:00
int a = 2;
CHECK( a == 2 );
2010-12-27 23:05:13 +01:00
INFO( "this message should be logged, too" );
2010-12-27 23:05:13 +01:00
CHECK( a == 1 );
INFO( "and this, but later" );
CHECK( a == 0 );
INFO( "but not this" );
CHECK( a == 2 );
2010-12-27 23:05:13 +01:00
}
TEST_CASE( "./failing/message/fail", "FAIL aborts the test" )
2010-11-10 00:24:00 +01:00
{
FAIL( "This is a " << "failure" ); // This should output the message and abort
2010-11-10 00:24:00 +01:00
}