Added test for a mock class defined within test case

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@296 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2011-04-15 21:20:52 +00:00
parent 2f8844e68c
commit 7b31aea1b3

View file

@ -429,3 +429,9 @@ BOOST_AUTO_TEST_CASE( boost_reference_wrapper_is_supported_in_value_constraint )
s = "string";
f( "string" );
}
BOOST_AUTO_TEST_CASE( mock_object_defined_within_test_case )
{
MOCK_CLASS( mock_within_test_case )
{};
}