Zero is often an adequate value to return from mock functions. In addition -
by the use of the SIMULATE macro, any non-zero value can be
returned to the unit.
void test_addition(void) {
EXPECT ( invalid );
SIMULATE( invalid, TRUE );
VALIDATE(calculate(3,7,'+'), -1);
}
As sample5 shows above2.1, the SIMULATE macro is used to indicate to the
framework, that this test expects invalid() function calls twice. The first call to
invalid should return default 0 (FALSE) and the second should return TRUE.
If the second invalid() function call is detected, the framewrok will make
the mock return the value TRUE to calculate.
If the actual and expected function call matches, and the expected function resolves to a function that is present in the unit, the framework will not call that function, but instead return the value given by the test.
If the actual and expected function call do not match and the expected function resolves to a function that is not present in the unit, the framework will report an error that an unexpected function call was detected.
If the actual and expected function call do not match and the actual function resolves to a function that is present in the unit, the framework will not interfere. The unit will then simply call that function.
testape
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