Removed MOCK_METHOD_TPL tests as it uses non standard code, see http://gcc.gnu.org/onlinedocs/gcc/Name-lookup.html

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@165 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2010-07-21 15:14:31 +00:00
parent 66268d74db
commit 0f33dab444

View file

@ -55,8 +55,6 @@ namespace
{
MOCK_METHOD_EXT( my_method, 1, int( int ), my_method )
};
void f() {}
}
BOOST_AUTO_TEST_CASE( basic_mock_object_usage )
@ -183,13 +181,8 @@ namespace
template< typename T >
MOCK_BASE_CLASS( my_template_base_class_mock, my_template_base_class< T > )
{
#if (defined __CYGWIN__) && (__GNUC__ == 3)
MOCK_METHOD_EXT_TPL( my_method, 1, void( T ), my_method )
MOCK_METHOD_EXT_TPL( my_other_method, 0, void(), my_other_method )
#else
MOCK_METHOD_TPL( my_method, 1 )
MOCK_METHOD_TPL( my_other_method, 0 )
#endif
};
}