Skip to content

Version 2.0.0

Compare
Choose a tag to compare
@eranpeer eranpeer released this 23 Feb 18:20
· 430 commits to master since this release
  • 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)