Mocking functions returning floating point values

Sample262.1below illustrates how to mock a function that is returning a double and how to use the macros SIMULATE_VALUE and SIMULATE_VALUE_FP to access both representations of the simulate value.

  #define PI (4.0 * atan( 1.0 ))

  double mock_pi() {
    return SIMULATE_VALUE_FP;
    } 

  double integer_mock_pi() {
    return SIMULATE_VALUE;
    }
    
  void test_deg2rad(void) {
    EXPECT_VALIDATE( pi, mock_pi, PI );
    VALIDATE_FP    ( deg2rad(360), 2*PI);
    EXPECT_VALIDATE( pi, integer_mock_pi, PI );
    VALIDATE       ( deg2rad(360), 2*PI);
    }

It is safe to mix the usage of these macros with both integers or floating points values, i.e if SIMULATE_VALUE_FP is used as an integer value, the compiler will cast it to an integer value, and if SIMULATE_VALUE is used as a floating point value, it will be cast to an floating point value.



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