This commit is contained in:
Phil Nash
2013-04-12 10:43:06 +01:00
parent cd9c72c66f
commit 243f2d2caf
5 changed files with 28 additions and 20 deletions

View File

@@ -1,6 +1,6 @@
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CatchSelfTest is a CATCH v0.9 b32 (integration) host application.
CatchSelfTest is a CATCH v0.9 b33 (integration) host application.
Run with -? for options
-------------------------------------------------------------------------------
@@ -5452,7 +5452,7 @@ with message:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
CatchSelfTest is a CATCH v0.9 b32 (integration) host application.
CatchSelfTest is a CATCH v0.9 b33 (integration) host application.
Run with -? for options
-------------------------------------------------------------------------------

View File

@@ -336,3 +336,15 @@ TEST_CASE( "Assertions then sections", "" )
}
}
}
class Awkward
{
operator int() const { return 7; }
};
//TEST_CASE( "non streamable", "" )
//{
// Awkward awkward;
// std::string s = Catch::toString( awkward );
// REQUIRE( s == "{?}" );
//}