blob: 65754b81293450e48c1e4490b026e89b773c116a [file] [log] [blame]
{
"name": "OCMockito",
"version": "1.0.0",
"license": "MIT",
"summary": "OCMockito is an Objective-C implementation of Mockito, supporting creation, verification and stubbing of mock objects.",
"homepage": "https://github.com/jonreid/OCMockito",
"authors": {
"Jon Reid": "jon@qualitycoding.org"
},
"source": {
"git": "https://github.com/jonreid/OCMockito.git",
"tag": "v1.0.0"
},
"description": "\n OCMockito is an Objective-C implementation of Mockito, supporting creation, \n verification and stubbing of mock objects.\n\n Key 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.\n ",
"platforms": {
"ios": "5.0",
"osx": "10.7"
},
"source_files": [
"Source/OCMockito/OCMockito.h",
"Source/OCMockito/**/*.{h,m,mm}"
],
"requires_arc": true,
"dependencies": {
"OCHamcrest": [
"~> 3.0"
]
}
}