Added MOCK_FUNCTOR_TPL

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@608 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2013-03-08 20:40:00 +00:00
parent 3f9e9a78a7
commit 200e293b7f
4 changed files with 42 additions and 5 deletions

View file

@ -280,6 +280,15 @@ BOOST_AUTO_TEST_CASE( mock_functor )
MOCK_FUNCTOR( f2, int( const std::string& ) );
}
namespace
{
template< typename T >
struct tpl_functor_class
{
MOCK_FUNCTOR_TPL( f, void( T ) );
};
}
BOOST_AUTO_TEST_CASE( mock_functor_reset )
{
MOCK_FUNCTOR( f, void() );