Upon entering a mock function, the framework disables all mocking of the function being mocked. It is therefore possible to execute the function being mocked from within the mock function. Upon return from the mock, or if the mock executes another test, the mocking of that function is enabled again. An example (sample13) is shown below.2.1
void mock_printf(char *fmt, ...) {
va_list args;
static int count = 0;
printf("*** printf called %d times *** \n", count++);
va_start(args,fmt);
vprintf(fmt, args);
}
void test_printf(void) {
SIMULATE(invalid, TRUE);
ALLOW_VALIDATE ( printf, mock_printf);
calculate(3,7,'+');
}
If the mocked function is not present in the unit, calling it from a mock will simply call the default mock for that function.
New is this release are support for floating point validations and function mocking. Also, MinGW has been added to the list of supported platforms.
moreTestApe forum is now hosted on Proboards. Support questions can be posted here or send directly on email. Due to ...
moreTestApe can now be used with MinGW GCC on windows. Also supported in this beta are floating point types in validations or when mocking functions
moreA small fix for webtty scripts, to allow the usage from Apple IPads. Tab on textarea to bring up IPad keyboard - you may have to scroll webpage beneath keyboard, in order to actually see what you're typing.
This release contains a new flexible mocking system with default mocks automatically generated for unresolved functions. Installation packages are available for GCC/Linux, GCC/CygWin as well Visual Studio 2009/Windows XP or Vista.
moreNew beta version is now available for download. This is the last beta before official release. The release supports an extensive mocking system.
moreThere is a change for the forum hosted on this site. The previous phpBB forum is closed for now. All forum threads will be migrated to a new simple blog. ...
more