Renamed MOCK_STATIC_FUNCTION to MOCK_STATIC_METHOD

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@423 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2012-03-15 07:40:29 +00:00
parent 01e31a39c3
commit 45d2d58000
3 changed files with 5 additions and 6 deletions

View file

@ -467,7 +467,7 @@ namespace
{
struct some_class
{
MOCK_STATIC_FUNCTION( some_static_method, 1, float( int ), some_static_method )
MOCK_STATIC_METHOD( some_static_method, 1, float( int ), some_static_method )
};
}
@ -484,7 +484,7 @@ namespace
template< typename T >
struct some_template_class
{
MOCK_STATIC_FUNCTION_TPL( some_static_method, 1, float( T ), some_static_method )
MOCK_STATIC_METHOD_TPL( some_static_method, 1, float( T ), some_static_method )
};
}