All Versions
107
Latest Version
Avg Release Cycle
40 days
Latest Release
990 days ago
Changelog History
Page 11
Changelog History
Page 11
-
v1.5.1 Changes
- ๐จ Refactored
MockFactory
to make it simpler and more explicit to use with regards to verification. Thanks Garry Shutler for the feedback!
- ๐จ Refactored
-
v1.5 Changes
- โ Added
MockFactory
to allow easy construction of multiple mocks with the same behavior and verification
- โ Added
-
v1.4 Changes
- โ Added support for passing constructor arguments for mocked classes.
- ๐ Improved code documentation
-
v1.3 Changes
- Added support for overriding expectations set previously on a Mock. Now adding a second expectation for the same method/property call will override the existing one. This facilitates setting up default expectations in a fixture setup and overriding when necessary in a specific test.
- Added support for mock verification. Both
Verify
andVerifyAll
are provided for more flexibility (the former only verifies methods markedVerifiable
)
-
v1.2 Changes
- โ Added support for
MockBehavior
mock constructor argument to affect the way the mocks expect or throw on calls.
- โ Added support for
-
v1.1 Changes
- ๐ Merged branch for dynamic types. Now Moq is based on Castle DynamicProxy2 to support a wider range of mock targets.
- โ Added ILMerge so that Castle libraries are merged into Moq assembly (no need for external references and avoid conflicts)
-
v1.0 Changes
- ๐ Initial release, initial documentation process in place, etc.