Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 835 Bytes

CHANGELOG.md

File metadata and controls

20 lines (16 loc) · 835 Bytes

Change Log

0.9.1 (2014-05-02)

  • Allow specifying consecutive exceptions to be thrown with andThrowExceptions
  • Allow specifying methods which can be mocked when using Mockery\Configuration::allowMockingNonExistentMethods(false) with Mockery\MockInterface::shouldAllowMockingMethod($methodName)
  • Added andReturnSelf method: $mock->shouldReceive("foo")->andReturnSelf()
  • shouldIgnoreMissing now takes an optional value that will be return instead of null, e.g. $mock->shouldIgnoreMissing($mock)

0.9.0 (2014-02-05)

  • Allow mocking classes with final __wakeup() method
  • Quick definitions are now always byDefault
  • Allow mocking of protected methods with shouldAllowMockingProtectedMethods
  • Support official Hamcrest package
  • Generator completely rewritten
  • Easily create named mocks with namedMock