mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
103 lines
2.4 KiB
C++
103 lines
2.4 KiB
C++
/*
|
|
* 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)
|
|
*/
|
|
|
|
#include "catch.hpp"
|
|
|
|
TEST_CASE( "./succeeding/message", "INFO and WARN do not abort tests" )
|
|
{
|
|
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
|
|
}
|
|
TEST_CASE( "./succeeding/succeed", "SUCCEED counts as a test pass" )
|
|
{
|
|
SUCCEED( "this is a " << "success" );
|
|
}
|
|
|
|
TEST_CASE( "./failing/message/info/1", "INFO gets logged on failure" )
|
|
{
|
|
INFO( "this message should be logged" );
|
|
INFO( "so should this" );
|
|
int a = 2;
|
|
REQUIRE( a == 1 );
|
|
}
|
|
|
|
TEST_CASE( "./mixed/message/info/2", "INFO gets logged on failure" )
|
|
{
|
|
INFO( "this message should not be logged" );
|
|
int a = 2;
|
|
CHECK( a == 2 );
|
|
|
|
INFO( "this message should be logged" );
|
|
|
|
CHECK( a == 1 );
|
|
|
|
INFO( "and this, but later" );
|
|
|
|
CHECK( a == 0 );
|
|
|
|
INFO( "but not this" );
|
|
|
|
CHECK( a == 2 );
|
|
}
|
|
|
|
TEST_CASE( "./failing/message/fail", "FAIL aborts the test" )
|
|
{
|
|
if( Catch::isTrue( true ) )
|
|
FAIL( "This is a " << "failure" ); // This should output the message and abort
|
|
}
|
|
|
|
TEST_CASE( "./failing/message/sections", "Output from all sections is reported" )
|
|
{
|
|
SECTION( "one", "" )
|
|
{
|
|
FAIL( "Message from section one" );
|
|
}
|
|
|
|
SECTION( "two", "" )
|
|
{
|
|
FAIL( "Message from section two" );
|
|
}
|
|
}
|
|
|
|
TEST_CASE( "./succeeding/message/sections/stdout", "Output from all sections is reported" )
|
|
{
|
|
SECTION( "one", "" )
|
|
{
|
|
std::cout << "Message from section one" << std::endl;
|
|
}
|
|
|
|
SECTION( "two", "" )
|
|
{
|
|
std::cout << "Message from section two" << std::endl;
|
|
}
|
|
}
|
|
|
|
TEST_CASE( "./mixed/message/scoped", "" )
|
|
{
|
|
for( int i=0; i<100; i++ )
|
|
{
|
|
SCOPED_INFO( "current counter " << i );
|
|
SCOPED_CAPTURE( i );
|
|
REQUIRE( i < 10 );
|
|
}
|
|
}
|
|
|
|
TEST_CASE( "./succeeding/nofail", "The NO_FAIL macro reports a failure but does not fail the test" )
|
|
{
|
|
CHECK_NOFAIL( 1 == 2 );
|
|
}
|
|
|
|
TEST_CASE( "just info", "[info][isolated info][hide]" )
|
|
{
|
|
INFO( "this should never be seen" );
|
|
}
|
|
TEST_CASE( "just failure", "[fail][isolated info][hide]" )
|
|
{
|
|
FAIL( "Previous info should not be seen" );
|
|
}
|