1
0
mirror of https://github.com/meekrosoft/fff synced 2026-01-23 08:25:59 +01:00

New feature: no longer need to specify argument count in the declaration

This commit is contained in:
Mike Long
2011-04-26 17:20:48 +01:00
parent 01aebe40e0
commit e34f577a4f
4 changed files with 95 additions and 17 deletions

View File

@@ -15,9 +15,9 @@
#include "../fff.h"
#include <gtest/gtest.h>
FAKE_VOID_FUNC1(voidfunc1, int);
FAKE_VOID_FUNC2(voidfunc2, char, char);
FAKE_VALUE_FUNC0(long, longfunc0);
FAKE_VOID_FUNC(voidfunc1, int);
FAKE_VOID_FUNC(voidfunc2, char, char);
FAKE_VALUE_FUNC(long, longfunc0);
class FFFTestSuite: public testing::Test
{