forked from jonreid/OCMockito
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES.txt
45 lines (31 loc) · 1.49 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
== Version 1.0.0 ==
This release adopts Semantic Versioning (http://semver.org). Thanks to: Jens Nerup
06 Sep 2013
New dependency:
* Requires OCHamcrest 3.0.0.
Features:
* Added support for XCTest. Special thanks to Richard Clem for testing.
* Added ability to match block arguments. Supported matchers: anything(), nilValue(), notNilValue()
* Added -description to mock objects to help when debugging.
== Version 0.23 ==
23 Nov 2012
* Added atLeast(count) and atLeastOnce() for verifyCount(). Thanks to: Markus Gasser
* Handle Class as both argument type and return type. Thanks to: David Hart
* Added support for -isKindOfClass: to object mocks. Thanks to: Tim Pesce
* No more need to specify "Other Linker Flags"! Depending on your project, you may be able to eliminate:
* -lstdc++
* -ObjC
* Converted source, tests, and examples to ARC
== Version 0.22 ==
18 Mar 2012
* Added mockClass(...) which mocks a class object. Thanks to: David Hart
* Added mockObjectAndProtocol(Class, Protocol) which mocks an object of a given class that also implements a given protocol. Thanks to: Kevin Lundberg
== Version 0.21 ==
09 Mar 2012
* Added mockProtocol(...) which mocks an object implementing a given protocol.
* given(...) now supports methods returning float or double. Thanks to: Markus Gasser
* verify(...) and verifyCount(...) check that argument is a mock object.
* Eliminated givenPreviousCall.
* Changed build configuration to Debug during initial development.
== Version 0.1 ==
24 Nov 2011 prerelease