mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
34 lines
853 B
C++
34 lines
853 B
C++
|
/*
|
||
|
* TrickyTests.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)
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#include "catch.hpp"
|
||
|
|
||
|
namespace Catch
|
||
|
{
|
||
|
template<>
|
||
|
std::string toString<std::pair<int, int> >( const std::pair<int, int>& value )
|
||
|
{
|
||
|
std::ostringstream oss;
|
||
|
oss << "std::pair( " << value.first << ", " << value.second << " )";
|
||
|
return oss.str();
|
||
|
|
||
|
}
|
||
|
}
|
||
|
|
||
|
TEST_CASE( "succeeding/Tricky", "Some tricky to parse tests" )
|
||
|
{
|
||
|
std::pair<int, int> aNicePair( 1, 2 );
|
||
|
|
||
|
// !TBD: would be nice if this could compile without the extra parentheses
|
||
|
EXPECT( (std::pair<int, int>( 1, 2 )) == aNicePair );
|
||
|
|
||
|
}
|