Skip to content

Releases: eranpeer/FakeIt

2.0.7

21 Mar 10:41
Compare
Choose a tag to compare
  • Fix incorrect detection of the availability of std::uncaught_exceptions on MSVC.

2.0.6

20 Mar 15:57
Compare
Choose a tag to compare
  • Fix use of deleted macro CATCH_INTERNAL_UNSUPPRESS_PARENTHESES_WARNINGS in recent Catch2 releases.
  • Fix use of deleted function std::uncaught_exception in C++17.
  • Minor fixes.

2.0.5

17 Aug 15:59
Compare
Choose a tag to compare

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.

2.0.4

21 May 12:17
Compare
Choose a tag to compare

Bug fixes and small enhancements.

Bug fixes

28 Feb 13:11
Compare
Choose a tag to compare
2.0.3

add all autogenerated files

2.0.2

06 May 20:44
Compare
Choose a tag to compare
  • 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!!!

Version 2.0.1

12 Mar 17:25
Compare
Choose a tag to compare

Add support for const overloaded methods stubbing.

Version 2.0.0

23 Feb 18:20
Compare
Choose a tag to compare
  • 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) 

1.5.0

09 Feb 20:47
Compare
Choose a tag to compare
  • Support destructor stubbing & verifying
  • Improve overloaded methods stubbing api
  • Minor fixes

1.4.3

23 Jan 15:31
Compare
Choose a tag to compare

Minor bug fixes