blob: 46614799f197fe73c01fd995d6bb0b0ec24c527c [file] [log] [blame]
{
"name": "OCMockito",
"version": "4.0.1",
"summary": "OCMockito is an Objective-C implementation of Mockito, supporting creation, verification and stubbing of mock objects.",
"description": "OCMockito is an Objective-C implementation of Mockito, supporting creation, \nverification and stubbing of mock objects.\n\nKey differences from other mocking frameworks:\n\n* Mock objects are always \"nice,\" recording their calls instead of \n throwing exceptions about unspecified invocations. This makes tests less fragile.\n* No expect-run-verify, making tests more readable. Mock objects \n record their calls, then you verify the methods you want.\n* Verification failures are reported as unit test failures, \n identifying specific lines instead of throwing exceptions. This makes \n it easier to identify failures.",
"homepage": "https://github.com/jonreid/OCMockito",
"license": "MIT",
"authors": {
"Jon Reid": "jon@qualitycoding.org"
},
"social_media_url": "https://twitter.com/qcoding",
"platforms": {
"ios": "6.0",
"osx": "10.8",
"tvos": "9.0"
},
"source": {
"git": "https://github.com/jonreid/OCMockito.git",
"tag": "v4.0.1"
},
"source_files": [
"Source/OCMockito/**/*.{h,m}",
"Source/ThirdParty/**/*.{h,m}"
],
"public_header_files": [
"Source/OCMockito/Core/MKTNonObjectArgumentMatching.h",
"Source/OCMockito/Core/OCMockito.h",
"Source/OCMockito/Invocation/NSInvocation+OCMockito.h",
"Source/OCMockito/Mocking/MKTBaseMockObject.h",
"Source/OCMockito/Mocking/MKTClassObjectMock.h",
"Source/OCMockito/Mocking/MKTObjectAndProtocolMock.h",
"Source/OCMockito/Mocking/MKTObjectMock.h",
"Source/OCMockito/Mocking/MKTProtocolMock.h",
"Source/OCMockito/Stubbing/MKTOngoingStubbing.h"
],
"requires_arc": true,
"dependencies": {
"OCHamcrest": [
"~> 6.0"
]
}
}