mirror of
https://github.com/meekrosoft/fff
synced 2026-01-23 08:25:59 +01:00
Using a function that sets a value on a variable via a char pointer, we
test the following:
1 - Does the custom fakes are called in the expected order?
2 - When the sequence length is exhausted, do we only call the last
custom fake in the sequence from then on?
25 lines
369 B
C++
25 lines
369 B
C++
|
|
extern "C"{
|
|
#include "global_fakes.h"
|
|
}
|
|
#include <gtest/gtest.h>
|
|
|
|
DEFINE_FFF_GLOBALS;
|
|
|
|
class FFFTestSuite: public testing::Test
|
|
{
|
|
public:
|
|
void SetUp()
|
|
{
|
|
RESET_FAKE(voidfunc1);
|
|
RESET_FAKE(voidfunc2);
|
|
RESET_FAKE(longfunc0);
|
|
RESET_FAKE(voidfunc1outparam);
|
|
FFF_RESET_HISTORY();
|
|
}
|
|
};
|
|
|
|
#include "test_cases.include"
|
|
|
|
|