Refactored error policy to simplify test frameworks integration

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@536 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2012-07-31 10:36:00 +00:00
parent 032e3b8a70
commit 610405b750
5 changed files with 84 additions and 151 deletions

View file

@ -16,51 +16,6 @@
#include <boost/function.hpp> #include <boost/function.hpp>
#include <boost/bind.hpp> #include <boost/bind.hpp>
#define CHECK_CALLS( calls ) \
BOOST_CHECK_EQUAL( calls, expected_call_count ); \
expected_call_count = 0;
#define CHECK_ERROR( expr, error, calls, context ) \
BOOST_CHECK( verify() ); \
try { expr; } catch( ... ) {} \
BOOST_CHECK_EQUAL( 1, error##_count ); \
CHECK_CALLS( calls ); \
BOOST_CHECK_EQUAL( context, last_context ); \
reset();
namespace
{
struct error_fixture
{
error_fixture()
{
reset();
}
~error_fixture()
{
BOOST_CHECK( verify() );
BOOST_CHECK_EQUAL( 0, expected_call_count );
}
void reset()
{
missing_action_count = 0;
expected_call_count = 0;
unexpected_call_count = 0;
sequence_failed_count = 0;
verification_failed_count = 0;
untriggered_expectation_count = 0;
last_context.clear();
}
bool verify() const
{
return missing_action_count == 0 &&
unexpected_call_count == 0 &&
sequence_failed_count == 0 &&
verification_failed_count == 0 &&
untriggered_expectation_count == 0;
}
};
}
// static // static
namespace namespace
@ -88,11 +43,11 @@ BOOST_FIXTURE_TEST_CASE( triggering_an_unconfigured_function_calls_unexpected_ca
{ {
{ {
mock::detail::function< void() > f; mock::detail::function< void() > f;
CHECK_ERROR( f(), unexpected_call, 0, "?()" ); CHECK_ERROR( f(), "unexpected call", 0, "?()" );
} }
{ {
mock::detail::function< int( int, const std::string& ) > f; mock::detail::function< int( int, const std::string& ) > f;
CHECK_ERROR( f( 1, "s" ), unexpected_call, 0, "?( 1, \"s\" )" ); CHECK_ERROR( f( 1, "s" ), "unexpected call", 0, "?( 1, \"s\" )" );
} }
} }
@ -101,12 +56,12 @@ BOOST_FIXTURE_TEST_CASE( triggering_a_never_expectation_calls_unexpected_call_er
{ {
mock::detail::function< void() > f; mock::detail::function< void() > f;
f.expect().never(); f.expect().never();
CHECK_ERROR( f(), unexpected_call, 0, "?()\nv never()" ); CHECK_ERROR( f(), "unexpected call", 0, "?()\nv never()" );
} }
{ {
mock::detail::function< int( int, const std::string& ) > f; mock::detail::function< int( int, const std::string& ) > f;
f.expect().never(); f.expect().never();
CHECK_ERROR( f( 1, "s" ), unexpected_call, 0, "?( 1, \"s\" )\nv never().with( any, any )" ); CHECK_ERROR( f( 1, "s" ), "unexpected call", 0, "?( 1, \"s\" )\nv never().with( any, any )" );
} }
} }
@ -134,13 +89,13 @@ BOOST_FIXTURE_TEST_CASE( triggering_a_once_expectation_calls_unexpected_call_err
mock::detail::function< void() > f; mock::detail::function< void() > f;
f.expect().once(); f.expect().once();
f(); f();
CHECK_ERROR( f(), unexpected_call, 1, "?()\nv once()" ); CHECK_ERROR( f(), "unexpected call", 1, "?()\nv once()" );
} }
{ {
mock::detail::function< void( int, const std::string& ) > f; mock::detail::function< void( int, const std::string& ) > f;
f.expect().once(); f.expect().once();
f( 1, "s" ); f( 1, "s" );
CHECK_ERROR( f( 1, "s" ), unexpected_call, 1, "?( 1, \"s\" )\nv once().with( any, any )" ); CHECK_ERROR( f( 1, "s" ), "unexpected call", 1, "?( 1, \"s\" )\nv once().with( any, any )" );
} }
} }
@ -207,12 +162,12 @@ BOOST_FIXTURE_TEST_CASE( verifying_a_once_expectation_before_the_call_fails, err
{ {
mock::detail::function< void() > f; mock::detail::function< void() > f;
f.expect().once(); f.expect().once();
CHECK_ERROR( BOOST_CHECK( ! f.verify() ), verification_failed, 0, "?\n. once()" ); CHECK_ERROR( BOOST_CHECK( ! f.verify() ), "verification failed", 0, "?\n. once()" );
} }
{ {
mock::detail::function< int( int, const std::string& ) > f; mock::detail::function< int( int, const std::string& ) > f;
f.expect().once(); f.expect().once();
CHECK_ERROR( BOOST_CHECK( ! f.verify() ), verification_failed, 0, "?\n. once().with( any, any )" ); CHECK_ERROR( BOOST_CHECK( ! f.verify() ), "verification failed", 0, "?\n. once().with( any, any )" );
} }
} }
@ -220,7 +175,7 @@ BOOST_FIXTURE_TEST_CASE( verifying_a_once_expectation_after_a_verify_and_one_cal
{ {
mock::detail::function< void() > f; mock::detail::function< void() > f;
f.expect().once(); f.expect().once();
CHECK_ERROR( BOOST_CHECK( ! f.verify() ), verification_failed, 0, "?\n. once()" ); CHECK_ERROR( BOOST_CHECK( ! f.verify() ), "verification failed", 0, "?\n. once()" );
f(); f();
BOOST_CHECK( f.verify() ); BOOST_CHECK( f.verify() );
CHECK_CALLS( 1 ); CHECK_CALLS( 1 );
@ -234,13 +189,13 @@ BOOST_FIXTURE_TEST_CASE( triggering_a_reset_function_calls_unexpected_call_error
mock::detail::function< void() > f; mock::detail::function< void() > f;
f.expect(); f.expect();
f.reset(); f.reset();
CHECK_ERROR( f(), unexpected_call, 0, "?()" ); CHECK_ERROR( f(), "unexpected call", 0, "?()" );
} }
{ {
mock::detail::function< int( int, const std::string& ) > f; mock::detail::function< int( int, const std::string& ) > f;
f.expect(); f.expect();
f.reset(); f.reset();
CHECK_ERROR( f( 1, "s" ), unexpected_call, 0, "?( 1, \"s\" )" ); CHECK_ERROR( f( 1, "s" ), "unexpected call", 0, "?( 1, \"s\" )" );
} }
} }
@ -267,12 +222,12 @@ BOOST_FIXTURE_TEST_CASE( triggering_an_expectation_with_wrong_parameter_value_in
{ {
mock::detail::function< void( int ) > f; mock::detail::function< void( int ) > f;
f.expect().with( 42 ); f.expect().with( 42 );
CHECK_ERROR( f( 43 ), unexpected_call, 0, "?( 43 )\n. unlimited().with( 42 )" ); CHECK_ERROR( f( 43 ), "unexpected call", 0, "?( 43 )\n. unlimited().with( 42 )" );
} }
{ {
mock::detail::function< int( int, const std::string& ) > f; mock::detail::function< int( int, const std::string& ) > f;
f.expect().with( 42, "expected" ); f.expect().with( 42, "expected" );
CHECK_ERROR( f( 42, "actual" ), unexpected_call, 0, "?( 42, \"actual\" )\n. unlimited().with( 42, \"expected\" )" ); CHECK_ERROR( f( 42, "actual" ), "unexpected call", 0, "?( 42, \"actual\" )\n. unlimited().with( 42, \"expected\" )" );
} }
} }
@ -282,7 +237,7 @@ BOOST_FIXTURE_TEST_CASE( triggering_an_expectation_with_wrong_parameter_value_in
f.expect().with( mock::equal( 42 ) || mock::less( 42 ) ); f.expect().with( mock::equal( 42 ) || mock::less( 42 ) );
f( 41 ); f( 41 );
f( 42 ); f( 42 );
CHECK_ERROR( f( 43 ), unexpected_call, 2, "?( 43 )\n. unlimited().with( ( equal( 42 ) || less( 42 ) ) )" ); CHECK_ERROR( f( 43 ), "unexpected call", 2, "?( 43 )\n. unlimited().with( ( equal( 42 ) || less( 42 ) ) )" );
} }
BOOST_FIXTURE_TEST_CASE( triggering_an_expectation_with_wrong_parameter_value_in_equal_and_not_less_constraint_calls_unexpected_call_error, error_fixture ) BOOST_FIXTURE_TEST_CASE( triggering_an_expectation_with_wrong_parameter_value_in_equal_and_not_less_constraint_calls_unexpected_call_error, error_fixture )
@ -290,7 +245,7 @@ BOOST_FIXTURE_TEST_CASE( triggering_an_expectation_with_wrong_parameter_value_in
mock::detail::function< void( int ) > f; mock::detail::function< void( int ) > f;
f.expect().with( mock::equal( 42 ) && ! mock::less( 41 ) ); f.expect().with( mock::equal( 42 ) && ! mock::less( 41 ) );
f( 42 ); f( 42 );
CHECK_ERROR( f( 43 ), unexpected_call, 1, "?( 43 )\n. unlimited().with( ( equal( 42 ) && ! less( 41 ) ) )" ); CHECK_ERROR( f( 43 ), "unexpected call", 1, "?( 43 )\n. unlimited().with( ( equal( 42 ) && ! less( 41 ) ) )" );
} }
namespace namespace
@ -339,12 +294,12 @@ BOOST_FIXTURE_TEST_CASE( triggering_an_expectation_with_failing_custom_constrain
{ {
mock::detail::function< void( int ) > f; mock::detail::function< void( int ) > f;
f.expect().with( &custom_constraint ); f.expect().with( &custom_constraint );
CHECK_ERROR( f( 42 ), unexpected_call, 0, "?( 42 )\n. unlimited().with( ? )" ); CHECK_ERROR( f( 42 ), "unexpected call", 0, "?( 42 )\n. unlimited().with( ? )" );
} }
{ {
mock::detail::function< int( int, const std::string& ) > f; mock::detail::function< int( int, const std::string& ) > f;
f.expect().with( &custom_constraint, "actual" ); f.expect().with( &custom_constraint, "actual" );
CHECK_ERROR( f( 42, "actual" ), unexpected_call, 0, "?( 42, \"actual\" )\n. unlimited().with( ?, \"actual\" )" ); CHECK_ERROR( f( 42, "actual" ), "unexpected call", 0, "?( 42, \"actual\" )\n. unlimited().with( ?, \"actual\" )" );
} }
} }
@ -363,17 +318,17 @@ BOOST_FIXTURE_TEST_CASE( triggering_an_expectation_with_no_return_set_calls_miss
{ {
mock::detail::function< int() > f; mock::detail::function< int() > f;
f.expect(); f.expect();
CHECK_ERROR( f(), missing_action, 0, "?()\n. unlimited()" ); CHECK_ERROR( f(), "missing action", 0, "?()\n. unlimited()" );
} }
{ {
mock::detail::function< int&() > f; mock::detail::function< int&() > f;
f.expect(); f.expect();
CHECK_ERROR( f(), missing_action, 0, "?()\n. unlimited()" ); CHECK_ERROR( f(), "missing action", 0, "?()\n. unlimited()" );
} }
{ {
mock::detail::function< const std::string&() > f; mock::detail::function< const std::string&() > f;
f.expect(); f.expect();
CHECK_ERROR( f(), missing_action, 0, "?()\n. unlimited()" ); CHECK_ERROR( f(), "missing action", 0, "?()\n. unlimited()" );
} }
} }
@ -591,7 +546,7 @@ BOOST_FIXTURE_TEST_CASE( expecting_twice_a_single_expectation_makes_it_callable_
f.expect().once(); f.expect().once();
f(); f();
f(); f();
CHECK_ERROR( f(), unexpected_call, 2, "?()\nv once()\nv once()" ); CHECK_ERROR( f(), "unexpected call", 2, "?()\nv once()\nv once()" );
} }
{ {
mock::detail::function< void( const std::string& ) > f; mock::detail::function< void( const std::string& ) > f;
@ -599,7 +554,7 @@ BOOST_FIXTURE_TEST_CASE( expecting_twice_a_single_expectation_makes_it_callable_
f.expect().once().with( "second" ); f.expect().once().with( "second" );
f( "first" ); f( "first" );
f( "second" ); f( "second" );
CHECK_ERROR( f( "third"), unexpected_call, 2, "?( \"third\" )\nv once().with( \"first\" )\nv once().with( \"second\" )" ); CHECK_ERROR( f( "third"), "unexpected call", 2, "?( \"third\" )\nv once().with( \"first\" )\nv once().with( \"second\" )" );
} }
} }
@ -611,7 +566,7 @@ BOOST_FIXTURE_TEST_CASE( best_expectation_is_selected_first, error_fixture )
f.expect().once().with( 2 ); f.expect().once().with( 2 );
f( 2 ); f( 2 );
f( 1 ); f( 1 );
CHECK_ERROR( f( 3 ), unexpected_call, 2, "?( 3 )\nv once().with( 1 )\nv once().with( 2 )" ); CHECK_ERROR( f( 3 ), "unexpected call", 2, "?( 3 )\nv once().with( 1 )\nv once().with( 2 )" );
} }
{ {
mock::detail::function< void( const std::string& ) > f; mock::detail::function< void( const std::string& ) > f;
@ -619,7 +574,7 @@ BOOST_FIXTURE_TEST_CASE( best_expectation_is_selected_first, error_fixture )
f.expect().once().with( "second" ); f.expect().once().with( "second" );
f( "second" ); f( "second" );
f( "first" ); f( "first" );
CHECK_ERROR( f( "third"), unexpected_call, 2, "?( \"third\" )\nv once().with( \"first\" )\nv once().with( \"second\" )" ); CHECK_ERROR( f( "third"), "unexpected call", 2, "?( \"third\" )\nv once().with( \"first\" )\nv once().with( \"second\" )" );
} }
} }
@ -717,28 +672,28 @@ BOOST_FIXTURE_TEST_CASE( expectation_with_remaining_untriggered_matches_upon_des
{ {
std::auto_ptr< mock::detail::function< void() > > f( new mock::detail::function< void() > ); std::auto_ptr< mock::detail::function< void() > > f( new mock::detail::function< void() > );
f->expect().once(); f->expect().once();
CHECK_ERROR( f.reset(), untriggered_expectation, 0, "?\n. once()" ); CHECK_ERROR( f.reset(), "untriggered expectation", 0, "?\n. once()" );
} }
BOOST_FIXTURE_TEST_CASE( verifying_expectation_with_remaining_matches_disables_the_automatic_verification_upon_destruction, error_fixture ) BOOST_FIXTURE_TEST_CASE( verifying_expectation_with_remaining_matches_disables_the_automatic_verification_upon_destruction, error_fixture )
{ {
mock::detail::function< void() > f; mock::detail::function< void() > f;
f.expect().once(); f.expect().once();
CHECK_ERROR( f.verify(), verification_failed, 0, "?\n. once()" ); CHECK_ERROR( f.verify(), "verification failed", 0, "?\n. once()" );
} }
BOOST_FIXTURE_TEST_CASE( triggering_unexpected_call_call_disables_the_automatic_verification_upon_destruction, error_fixture ) BOOST_FIXTURE_TEST_CASE( triggering_unexpected_call_call_disables_the_automatic_verification_upon_destruction, error_fixture )
{ {
mock::detail::function< void() > f; mock::detail::function< void() > f;
CHECK_ERROR( f(), unexpected_call, 0, "?()" ); CHECK_ERROR( f(), "unexpected call", 0, "?()" );
} }
BOOST_FIXTURE_TEST_CASE( adding_an_expectation_reactivates_the_verification_upon_destruction, error_fixture ) BOOST_FIXTURE_TEST_CASE( adding_an_expectation_reactivates_the_verification_upon_destruction, error_fixture )
{ {
std::auto_ptr< mock::detail::function< void() > > f( new mock::detail::function< void() > ); std::auto_ptr< mock::detail::function< void() > > f( new mock::detail::function< void() > );
CHECK_ERROR( (*f)(), unexpected_call, 0, "?()" ); CHECK_ERROR( (*f)(), "unexpected call", 0, "?()" );
f->expect().once(); f->expect().once();
CHECK_ERROR( f.reset(), untriggered_expectation, 0, "?\n. once()" ); CHECK_ERROR( f.reset(), "untriggered expectation", 0, "?\n. once()" );
} }
BOOST_FIXTURE_TEST_CASE( throwing_an_exception_disables_the_automatic_verification_upon_destruction, error_fixture ) BOOST_FIXTURE_TEST_CASE( throwing_an_exception_disables_the_automatic_verification_upon_destruction, error_fixture )

View file

@ -10,18 +10,16 @@
#define MOCK_TEST_MOCK_ERROR_HPP_INCLUDED #define MOCK_TEST_MOCK_ERROR_HPP_INCLUDED
#define MOCK_ERROR_POLICY mock_error #define MOCK_ERROR_POLICY mock_error
#include <boost/test/test_tools.hpp>
#include <boost/lexical_cast.hpp> #include <boost/lexical_cast.hpp>
#include <stdexcept> #include <stdexcept>
namespace namespace
{ {
int missing_action_count = 0; int error_count = 0;
int expected_call_count = 0; int call_count = 0;
int unexpected_call_count = 0;
int sequence_failed_count = 0;
int verification_failed_count = 0;
int untriggered_expectation_count = 0;
std::string last_message;
std::string last_context; std::string last_context;
template< typename Result > template< typename Result >
@ -32,51 +30,62 @@ namespace
throw std::runtime_error( "aborted" ); throw std::runtime_error( "aborted" );
} }
static void checkpoint( const char* /*file*/, int /*line*/ ) static void pass( const char* /*file*/, int /*line*/ )
{} {}
template< typename Context > template< typename Context >
static void missing_action( const Context& context, static void call( const Context& /*context*/,
const char* /*file*/, int /*line*/ )
{
last_context = boost::lexical_cast< std::string >( context );
++missing_action_count;
}
template< typename Context >
static void expected_call( const Context& /*context*/,
const char* /*file*/, int /*line*/ ) const char* /*file*/, int /*line*/ )
{ {
last_context.clear(); last_context.clear();
++expected_call_count; last_message.clear();
++call_count;
} }
template< typename Context > template< typename Context >
static void unexpected_call( const Context& context ) static void fail( const std::string& message, const Context& context,
const char* /*file*/ = "", int /*line*/ = 0 )
{ {
last_context = boost::lexical_cast< std::string >( context ); last_context = boost::lexical_cast< std::string >( context );
++unexpected_call_count; last_message = message;
++error_count;
} }
template< typename Context > };
static void sequence_failed( const Context& context,
const char* /*file*/, int /*line*/ ) struct error_fixture
{ {
last_context = boost::lexical_cast< std::string >( context ); error_fixture()
++sequence_failed_count; {
reset();
} }
template< typename Context > ~error_fixture()
static void verification_failed( const Context& context,
const char* /*file*/, int /*line*/ )
{ {
last_context = boost::lexical_cast< std::string >( context ); BOOST_CHECK( verify() );
++verification_failed_count; BOOST_CHECK_EQUAL( 0, call_count );
} }
template< typename Context > void reset()
static void untriggered_expectation( const Context& context,
const char* /*file*/, int /*line*/ )
{ {
last_context = boost::lexical_cast< std::string >( context ); error_count = 0;
++untriggered_expectation_count; last_message.clear();
last_context.clear();
}
bool verify() const
{
return error_count == 0;
} }
}; };
} }
#define CHECK_CALLS( calls ) \
BOOST_CHECK_EQUAL( calls, call_count ); \
call_count = 0;
#define CHECK_ERROR( expr, error, calls, context ) \
BOOST_CHECK( verify() ); \
try { expr; } catch( ... ) {} \
BOOST_CHECK_EQUAL( 1, error_count ); \
BOOST_CHECK_EQUAL( error, last_message ); \
BOOST_CHECK_EQUAL( context, last_context ); \
CHECK_CALLS( calls ); \
reset();
#endif // MOCK_TEST_MOCK_ERROR_HPP_INCLUDED #endif // MOCK_TEST_MOCK_ERROR_HPP_INCLUDED

View file

@ -54,11 +54,11 @@ namespace detail
it != expectations_.end(); ++it ) it != expectations_.end(); ++it )
{ {
if( ! it->verify() ) if( ! it->verify() )
error_type::untriggered_expectation( error_type::fail( "untriggered expectation",
boost::unit_test::lazy_ostream::instance() boost::unit_test::lazy_ostream::instance()
<< *this, it->file(), it->line() ); << *this, it->file(), it->line() );
else if( ! it->invoked() ) else if( ! it->invoked() )
error_type::expected_call( error_type::call(
boost::unit_test::lazy_ostream::instance() boost::unit_test::lazy_ostream::instance()
<< *this, it->file(), it->line() ); << *this, it->file(), it->line() );
} }
@ -73,7 +73,7 @@ namespace detail
if( !it->verify() ) if( !it->verify() )
{ {
valid_ = false; valid_ = false;
error_type::verification_failed( error_type::fail( "verification failed",
boost::unit_test::lazy_ostream::instance() boost::unit_test::lazy_ostream::instance()
<< *this, it->file(), it->line() ); << *this, it->file(), it->line() );
} }
@ -112,23 +112,23 @@ namespace detail
{ {
if( ! it->invoke() ) if( ! it->invoke() )
{ {
error_type::sequence_failed( error_type::fail( "sequence failed",
MOCK_CONTEXT, it->file(), it->line() ); MOCK_CONTEXT, it->file(), it->line() );
return error_type::abort(); return error_type::abort();
} }
if( ! it->functor() ) if( ! it->functor() )
{ {
error_type::missing_action( error_type::fail( "missing action",
MOCK_CONTEXT, it->file(), it->line() ); MOCK_CONTEXT, it->file(), it->line() );
return error_type::abort(); return error_type::abort();
} }
valid_ = true; valid_ = true;
error_type::expected_call( error_type::call(
MOCK_CONTEXT, it->file(), it->line() ); MOCK_CONTEXT, it->file(), it->line() );
return it->functor()( return it->functor()(
BOOST_PP_ENUM_PARAMS(MOCK_NUM_ARGS, t) ); BOOST_PP_ENUM_PARAMS(MOCK_NUM_ARGS, t) );
} }
error_type::unexpected_call( MOCK_CONTEXT ); error_type::fail( "unexpected call", MOCK_CONTEXT );
return error_type::abort(); return error_type::abort();
} }

View file

@ -45,7 +45,7 @@ namespace detail
} }
bool verify( const char* file, int line ) const bool verify( const char* file, int line ) const
{ {
error_type::checkpoint( file, line ); error_type::pass( file, line );
return impl_->verify(); return impl_->verify();
} }
void reset() void reset()
@ -54,13 +54,13 @@ namespace detail
} }
void reset( const char* file, int line ) void reset( const char* file, int line )
{ {
error_type::checkpoint( file, line ); error_type::pass( file, line );
impl_->reset(); impl_->reset();
} }
expectation_type& expect( const char* file, int line ) expectation_type& expect( const char* file, int line )
{ {
error_type::checkpoint( file, line ); error_type::pass( file, line );
return impl_->expect(); return impl_->expect();
} }
expectation_type& expect() expectation_type& expect()

View file

@ -32,15 +32,14 @@ namespace mock
throw boost::enable_current_exception( exception() ); throw boost::enable_current_exception( exception() );
} }
static void checkpoint( const char* file, int line ) static void pass( const char* file, int line )
{ {
boost::unit_test::unit_test_log.set_checkpoint( file, boost::unit_test::unit_test_log.set_checkpoint( file,
static_cast< std::size_t >( line ) ); static_cast< std::size_t >( line ) );
} }
template< typename Context > template< typename Context >
static void fail( static void fail( const char* message, const Context& context,
const char* message, const Context& context,
const char* file = "unknown location", int line = 0 ) const char* file = "unknown location", int line = 0 )
{ {
boost::unit_test::framework::assertion_result( false ); boost::unit_test::framework::assertion_result( false );
@ -53,7 +52,7 @@ namespace mock
} }
template< typename Context > template< typename Context >
static void expected_call( const Context& context, static void call( const Context& context,
const char* file, int line ) const char* file, int line )
{ {
boost::unit_test::framework::assertion_result( true ); boost::unit_test::framework::assertion_result( true );
@ -64,36 +63,6 @@ namespace mock
<< "mock expectation fulfilled: " << context << "mock expectation fulfilled: " << context
<< boost::unit_test::log::end(); << boost::unit_test::log::end();
} }
template< typename Context >
static void missing_action( const Context& context,
const char* file, int line )
{
fail( "missing action", context, file, line );
}
template< typename Context >
static void unexpected_call( const Context& context )
{
fail( "unexpected call", context );
}
template< typename Context >
static void sequence_failed( const Context& context,
const char* file, int line )
{
fail( "sequence failed", context, file, line );
}
template< typename Context >
static void verification_failed( const Context& context,
const char* file, int line )
{
fail( "verification failed", context, file, line );
}
template< typename Context >
static void untriggered_expectation( const Context& context,
const char* file, int line )
{
fail( "untriggered expectation", context, file, line );
}
}; };
} // mock } // mock