ALLOW_VALIDATE

This macro will add a function to the list of functions, for which function calls are allowed and always considered valid. Function calls to this function are always replaced with function calls to a specfified mock function.

Syntax:
ALLOW_VALIDATE(function, mock)
Parameters:

function
A function used by the unit. The function can have any prototype.
mock
The function that will be called instead of function. The mock must have same prototype as the function it mocks.
Returns:
-

All function calls to function are considered valid, and they will be redirected to mock for the duration of the test.

While mock is executing it is possible for the mock function to call function. Function calls made from an active mock do not apply to any of ALLOW, ALLOW_SIMULATE, ALLOW_VALIDATE, EXPECT, EXPECT_VALIDATE or SIMULATE. If function are not present in unit the default mock will be called. The default mock will return 0.

ALLOW_VALIDATE can be used together with EXPECT, EXPECT_VALIDATE or SIMULATE. If these are used with same function in the same test (or in a test executed from the test), the validation of function calls, setup with these macros, will take precedence until all of the expected function calls has been validated. ALLOW_VALIDATE is valid for the duration of the test. If the test calls other tests, the macro will remain in scope also for these tests. ALLOW_SIMULATE on function will override any earlier allow macros on that function.

testape

News

The latest headlines from Testape.com

TestApe Release 880 available, Dec 3rd 2011

New is this release are support for floating point validations and function mocking. Also, MinGW has been added to the list of supported platforms.

more

Forum change, Mar 27th 2011

TestApe forum is now hosted on Proboards. Support questions can be posted here or send directly on email. Due to ...

more

TestApe beta release available, Sep 27th 2011

TestApe can now be used with MinGW GCC on windows. Also supported in this beta are floating point types in validations or when mocking functions

more

IPad update for WebTTY, May 15th 2011

A 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.

TestApe Release 791 available, Apr 2nd 2010

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.

more

TestApe beta version available, Jan 26th 2010

New beta version is now available for download. This is the last beta before official release. The release supports an extensive mocking system.

more

Forum change, Mar 10th 2009

There 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