mirror of
https://github.com/mat007/turtle.git
synced 2026-06-22 12:13:43 +00:00
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:
parent
3f9e9a78a7
commit
200e293b7f
4 changed files with 42 additions and 5 deletions
|
|
@ -342,6 +342,8 @@ Example :
|
|||
Synopsis :
|
||||
|
||||
MOCK_FUNCTOR( name, signature );
|
||||
|
||||
MOCK_FUNCTOR_TPL( name, signature ); // must be used if the signature uses a template parameter
|
||||
|
||||
Example :
|
||||
|
||||
|
|
@ -350,6 +352,23 @@ Example :
|
|||
MOCK_FUNCTOR( f, void( int ) );
|
||||
}
|
||||
|
||||
Example :
|
||||
|
||||
namespace
|
||||
{
|
||||
template< typename T >
|
||||
struct template_class
|
||||
{
|
||||
MOCK_FUNCTOR_TPL( f, void( T ) );
|
||||
};
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE( demonstrates_instantiating_a_mock_template_functor )
|
||||
{
|
||||
template_class< int > c;
|
||||
c.f( 3 );
|
||||
}
|
||||
|
||||
[endsect]
|
||||
|
||||
[section Function]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue