Tagged Questions

3
votes
1answer
272 views

Objective C - Unit testing & Mocking object?

- (BOOL)coolMethod:(NSString*)str { //do some stuff Webservice *ws = [[WebService alloc] init]; NSString *result = [ws startSynchronous:url]; if ([result isEqual:@"Something"]) ...
3
votes
2answers
416 views

How do i mock a method that accepts a handle as an argument in OCMock?

I'm trying to mock a method that has the equivalent of the following signature: - (NSDictionary *) uploadValues:(BOOL)doSomething error:(NSError **)error I want it to return a small dictionary so ...
3
votes
3answers
223 views

How can i unit test an object internal to a method in Objective-C?

I'm wondering how to go about testing this. I have a method that takes a parameter, and based on some properties of that parameter it creates another object and operates on it. The code looks ...
2
votes
1answer
215 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 = ...
1
vote
2answers
109 views

How to mock class method (+)?

Need to write unit testing for the following code, I want to do mock for class method canMakePayments, return yes or no, so far no good method found dues to canMakePayments is a class method (+), ...
1
vote
1answer
200 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
246 views

Checking IBOutlet connection with OCMock

I want to verify with unit tests that all the IBoutlets in my controller class are correctly hooked up in the NIB file. I'd like to do this with OCMock - even though I know I could simply assert the ...
1
vote
3answers
420 views

How can I use OCMock to verify that a method is never called?

At my day job I've been spoiled with Mockito's never() verification, which can confirm that a mock method is never called. Is there some way to accomplish the same thing using Objective-C and OCMock? ...
0
votes
1answer
49 views

IPhone unit testing OCMock, how to mock read only variables?

We always use OCMock in the following way, but it seems doesn't work for some read only property variables, such as NavigationController and so forth, it is read only, set mock one doesn't take ...
0
votes
1answer
60 views

Objective-C - Mocking a segmented control using OCMock?

I am trying to mockj a segmented control and I am getting crashes, any suggestions? NSInteger selectedSegment = 2; id segmentedControlMock = [OCMockObject niceMockForClass:[UISegmentedControl ...
0
votes
2answers
438 views

OBjective C & OC Mock - Mocking a class method?

I need to be able to determine whether a class method was called or not. How can I do this with OCMock?
0
votes
2answers
594 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 ...