The mock function has the same prototype as the function is validates, so
it is possible for it to return a value, that the framework return
to calculate.
The mock shown below will return EXPECTED_SUM,
which the framework will return back to calculate. Other tests may
require a different return value, so they will use another mock.
It is possible to have many mocks, each of which returns different values for
different test scenarios.
int check_add(int left_operand, int right_operand) {
VALIDATE(left_operand,3);
VALIDATE(right_operand,7);
return EXPECTED_SUM;
}
If the function mock is mocking a function that is present in the unit, it is possible, for the mock function to call that function.
In sample7 below2.1, the function add is present in the unit
int check_add(int left_operand, int right_operand) {
VALIDATE(left_operand,3);
VALIDATE(right_operand,7);
return add(left_operand, right_operand);
}
Calling the mocked function is a possibillity - it is not required.
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