diff --git a/test/fff_test_global_cpp.cpp b/test/fff_test_global_cpp.cpp new file mode 100644 index 0000000..fc08506 --- /dev/null +++ b/test/fff_test_global_cpp.cpp @@ -0,0 +1,23 @@ + +extern "C"{ + #include "global_fakes.h" +} +#include + +DEFINE_FFF_GLOBALS; + +class FFFTestSuite: public testing::Test +{ +public: + void SetUp() + { + RESET_FAKE(voidfunc1); + RESET_FAKE(voidfunc2); + RESET_FAKE(longfunc0); + RESET_HISTORY(); + } +}; + +#include "test_cases.include" + +