Releases: eranpeer/FakeIt
Releases · eranpeer/FakeIt
2.0.7
2.0.6
2.0.5
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
Bug fixes
2.0.2
Version 2.0.1
Add support for const overloaded methods stubbing.
Version 2.0.0
- 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)