Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 607 Bytes

12-MOCKING-PUBLIC-STATIC-METHODS.md

File metadata and controls

13 lines (8 loc) · 607 Bytes

Mocking Public Static Methods

Static methods are not called on real objects, so normal mock objects can't mock them. Mockery supports class aliased mocks, mocks representing a class name which would normally be loaded (via autoloading or a require statement) in the system under test. These aliases block that loading (unless via a require statement - so please use autoloading!) and allow Mockery to intercept static method calls and add expectations for them.

← Previous | Contents | Next →