Reverted 296 and 297

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@298 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2011-04-15 21:57:42 +00:00
parent dbaadfa7f2
commit b3954c469c

View file

@ -429,19 +429,3 @@ BOOST_AUTO_TEST_CASE( boost_reference_wrapper_is_supported_in_value_constraint )
s = "string";
f( "string" );
}
BOOST_AUTO_TEST_CASE( mock_class_defined_within_test_case )
{
MOCK_CLASS( mock_within_test_case )
{};
mock_within_test_case m;
}
BOOST_AUTO_TEST_CASE( mock_base_class_defined_within_test_case )
{
struct base
{};
MOCK_BASE_CLASS( mock_within_test_case, base )
{};
mock_within_test_case m;
}