Tagged Questions
13
votes
1answer
8k views
Testing use of NSURLConnection with HTTP response error statuses
I'm writing an iPhone application that needs to get some data from a web server. I'm using NSURLConnection to do the HTTP request, which works well, but I'm having trouble unit testing my code in the ...
11
votes
4answers
1k views
How to stub a class method in OCMock?
I often find in my iPhone Objective-C unit tests that I want stub out a class method, e.g. NSUrlConnection's +sendSynchronousRequest:returningResponse:error: method.
Simplified example:
- ...
4
votes
2answers
1k views
Using OCMock 1.77 for Unit and Application Test with iOS4 and Xcode 4/SDK4.3
I am trying to use OCMock 1.77 for unit and application testing with iOS4 and Xcode 4/SDK4.3. I have followed the instructions to do using OCMock as a static library found here: ...
4
votes
1answer
117 views
How to verify number of method calls using OCMock
Is there a way to verify that a method has been called 'x' amount of times?
4
votes
2answers
629 views
OCMock on iOS 4
I've been having troubles to run OCMock with iOS 4.
I've read that a possible solution os to build the library, and install libOCMock.a, but honestly, i don't know how. Any help would be usefull
3
votes
4answers
788 views
Using a struct with OCMock or Hamcrest
I'm hitting a road block and I'm wondering if the brilliant collective minds here can help. In ObjC CocoaTouch I'm trying to mock an object that takes struct parameters and returns a struct. OCMock is ...
2
votes
1answer
139 views
Why do my OCMock expects and stubs fail in iOS 5?
I have some simple mock objects with some stubs and expectations set up. When I run my tests on the iOS 4.3 simulator, everything passes. When I run on iOS 5, I get "unexpected method invoked" ...
2
votes
1answer
217 views
Objective C - How to use OC Mock?
I have a class that suppose to return a string when a method gets called. How can i create a mock object.
I want mock to return @"Hello" when the method "sayHello" get's called
id mock = ...
2
votes
3answers
2k views
OCMock for iPhone (iOS4, XCode 3.2.3)
I have the last version of OCMock (1.55) and XCode 3.2.3.
I have created a test bundle target in my project. What is the best way to use OCMock in my tests?
When I add OCMock.framework to the test ...
2
votes
1answer
494 views
OCMock returning values
Hey all,
I'm trying to write a test for a method where the output depends on an NSDate's timeIntervalSinceNow return value. I'd like to specify the return value in my tests so I can test certain ...
2
votes
1answer
251 views
How can i get OCMock to let me stub a category method on a UIKit class?
I'm trying to mock a UITabBarController in my app's tests. I have a category method on that class defined elsewhere in another file that gets imported along with ocmock in my test class. what i'm ...
1
vote
1answer
201 views
Are there any test spy libraries available for Objective-C?
I want to take a BDD approach to unit testing in an iOS project, and I just realized that there may not be an existing library that provides test doubles of the test spy variety. Ideally, I'm looking ...
1
vote
1answer
659 views
OCMock on a method with argument and returns a value
I have a class that relies on NSUserDefaults that I'm trying to unit-test and I'm providing the NSUserDefaults as a mock into my test class. When running the test, I get the error:
...
1
vote
2answers
587 views
iphone OCMockObject and unit-testing a class that inherits from NSURLConnection
I want to unit test the custom init method of a class that inherits from NSURLConnection -- how would I do this if the init of my testable class invokes NSURLConnection's initWithRequest?
I'm using ...
0
votes
1answer
76 views
How can I unit test this hitTest override in iPhone?
How can I unit test this hitTest override?
- (UIView*) hitTest:(CGPoint)point withEvent:(UIEvent *)event {
UIView* hitView = [super hitTest:point withEvent:event];
// Do something based on ...
0
votes
2answers
44 views
Why does OCMock not match my selector?
I have an OCMock expectation that goes something like this:
id myValidator = [OCMockObject mockForClass: [MyValidator class]];
[[myValidator expect] validateField: @"value1"
...
0
votes
0answers
69 views
OCMock FetchResultController, tableview, didSelectRowAtIndexPath
How can we perform a OCMock on the following FetchResultController, tableview, didSelectRowAtIndexPath to make one action to unit test.
0
votes
1answer
157 views
Testing NSWidowController using OCMock
I've been trying to come up with a a way to unit test my applicationDidFinishLaunching delegate using OCMock. My NSWindowController is instantiated here and I'd like to test it. Here's my test code:
...
0
votes
1answer
483 views
Do you know about a good OCMock with GHUnit tutorial in the iPhone / iPad?
I'm using GHUnit in my project and i need learn about OCMock for complete my Unit Tests (but i am new to this). I'm working with xcode 3.2.5
somebody knows about a good tutorial on OCMock?
Thanks.
0
votes
2answers
598 views
OCMock: Why do I get an unrecognized selector exception when attempting to call a UIWebView mock?
Edit: This was all caused by a typo in my Other Link Flags setting. See my answer below for more information.
I'm attempting to mock a UIWebView so that I can verify that methods on it are called ...
0
votes
4answers
362 views
How to use mock and verify methods of OCMock in objective-C ? Is there any good tutorial on OCMock is available on the internet?
My problem is I am getting an error:
OCMckObject[NSNumberFormatter]:
expected method was not
invoked:setAllowsFloats:YES
I have written following Code:
(void) testReturnStringFromNumber
{
...
0
votes
3answers
325 views
Not feasible to call NSInvocation from a SenTestCase derived class?
Is NSInvocation class not meant to be called via unit tests (for iPhone)?
My intent is to call a class's method generically and since the method has more than 2 parameters, I can't use [myTestClass ...
0
votes
1answer
809 views
Using OCMock to expect category methods yields “[NSProxy doesNotRecognizeSelector”…]"
I'm using OCMock trying to test the behavior of NSURLConnection. Here's the incomplete test:
#include "GTMSenTestCase.h"
#import <OCMock/OCMock.h>
@interface HttpTest : GTMTestCase
- ...