FakeIt v2.0.0 Release Notes

Release Date: 2015-02-23 // about 9 years ago
    • ✂ 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)