All Versions
10
Latest Version
Avg Release Cycle
145 days
Latest Release
2348 days ago

Changelog History

  • v2.0.5 Changes

    August 17, 2018

    🚀 This is a bug fixes & maintenance release. Here are some of the major changes:

    • 👌 Support x64 on visual studio. Thanks to @ericlemes !
    • 👌 Support NUnit. Thanks to @phxnsharp !
    • 🛠 Fix issue #153 (Issue with mock with shared_ptr used in self-invocation). Thanks to @ericlemes !
    • 🛠 Many minor fixes. Thanks to all the contributors.

    🛠 Special thanks to @ericlemes who have joined the Fakeit team and contributed a some major bug fixes.

  • v2.0.4 Changes

    May 21, 2017

    🐛 Bug fixes and small enhancements.

  • v2.0.3

    February 28, 2017
  • v2.0.2 Changes

    May 06, 2015
    • 🛠 Fix segmentation fault when calling a spied method from another spied method.
    • 🤡 Make "Verify" convertible to bool: if (Verify(Method(mock,foo))) {...}
    • Join the Biicode revolution!!!
  • v2.0.1 Changes

    March 12, 2015

    ➕ Add support for const overloaded methods stubbing.

  • v2.0.0 Changes

    February 23, 2015
    • ✂ Remove limit of 50 virtual methods per mock class (1000 is the new limit).
    • 👌 Improve overloaded methods stubbing API.
    • 🛠 Minor bug fixes.
    • 💅 Old style subbing is not supported anymore. Macros must be used for stubbing.

    👍 Not supported any more:

    When(mock[&SomeClass::foo]).Return(1) 
    

    🆕 New style must be used:

    When(Method(mock,foo)).Return(1) 
    
  • v1.5.0 Changes

    February 09, 2015
    • 👌 Support destructor stubbing & verifying
    • 👌 Improve overloaded methods stubbing api
    • 🛠 Minor fixes
  • v1.4.3 Changes

    January 23, 2015

    🛠 Minor bug fixes

  • v1.4.2 Changes

    January 22, 2015

    ➕ Add "Detach" method to Mock class.

  • v1.4.1 Changes

    January 22, 2015

    🛠 Minor fixes & enhancements