As described in section [*] the test can give the return value
by the use of the macro SIMULATE, if the default value of zero used by
EXPECT is not adequate.
There is also an equivalent EXPECT_SIMULATE macro, that is used by the test
to indicate that a mock function should be used to validate the parameters.
The simulate value given to EXPECT_SIMULATE can be read from within the mock
function using the macro SIMULATE_VALUE. This can be used to pass parameters
between tests and mock functions as shown in sample8 below2.1
void test_addition(void) {
EXPECT ( invalid );
EXPECT ( invalid );
EXPECT_SIMULATE ( add, check_add , EXPECTED_SUM);
VALIDATE(calculate(3,7,'+'), EXPECTED_SUM);
}
If the test is constructed as shown above, the value EXPECTED_SUM can
be extracted and returned from the mock like this:
int check_add(int left_operand, int right_operand) {
VALIDATE(left_operand,3);
VALIDATE(right_operand,7);
return SIMULATE_VALUE;
}
The same thing can be achived by having several different mocks each returning
their own unique value, but, by the use of SIMULATE_VALUE, the same mock
can be shared between several tests.
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