Added Catch integration

This commit is contained in:
Mathieu Champlon 2017-05-28 08:25:37 +02:00
parent 5e11124901
commit 6daff2167c
5 changed files with 56 additions and 5 deletions

47
include/turtle/catch.hpp Normal file
View file

@ -0,0 +1,47 @@
// http://turtle.sourceforge.net
//
// Copyright Mathieu Champlon and Ovanes Markarian 2017
//
// 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)
#ifndef MOCK_CATCH_HPP_INCLUDED
#define MOCK_CATCH_HPP_INCLUDED
#include <catch.hpp>
template< typename Result >
struct catch_mock_error_policy
{
static Result abort()
{
FAIL( "Aborted" );
throw std::runtime_error( "unreachable" );
}
template< typename Context >
static void fail( const char* message, const Context& context,
const char* file = "file://unknown-location", line = 0 )
{
CAPTURE( context );
FAIL_CHECK( message << " in: " << file << ":" << line );
}
template< typename Context >
static void call( const Context& context, const char* file, int line )
{
CAPTURE( context );
INFO( file << ":" << line );
}
static void pass( const char* file, int line )
{
INFO( file << ":" << line );
}
};
#define MOCK_ERROR_POLICY catch_mock_error_policy
#include "mock.hpp"
#endif // MOCK_CATCH_HPP_INCLUDED