Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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: - ...
7
votes
3answers
537 views

How to unit-test an internet protocol implementation?

I decided to add unit tests to my project and continue development in a test-driven kind of way. I’m currently working on implementing unit tests for my ManageSieve client object and I’m not sure ...
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
627 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
4
votes
2answers
826 views

Testing controller method with OCMock and Core Data

I am just grasping the concepts of TDD and mocking, and am running into an issue in terms of how to properly. I have a sheet that drops down and lets a user create a new core data object and save it ...
3
votes
1answer
407 views

Test Core Data Application

How should I test the findByAttribute instance method I added to NSManagedObject? At first, I thought of programmatically creating an independent Core Data stack as demonstrated by Xcode's Core Data ...
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
3answers
531 views

Test rig exited abnormally with code 134 with OCMock verify on iOS 4

I'm trying to add OCMock to my iOS 4 project. To test it out, I have a class Person with one method, -hello. When I run this test: - (void) testMock { id mock = [OCMockObject mockForClass:[Person ...
3
votes
1answer
852 views

OCMock with Core Data dynamic properties problem

I'm using OCMock to mock some Core Data objects. Previously, I had the properties implemented with Objective-C 1.0 style explicit accessors: // -- Old Core Data object header @interface MyItem : ...
3
votes
2answers
417 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 ...
3
votes
4answers
786 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
136 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
42 views

OCMock testing the address of a struct

I have some code I want to test that is passing around the address of a struct: MyObject myObject = ...; MyRecord record = [someObject record]; //record is a @property [myObject add:&record]; ...
2
votes
4answers
342 views

How to use Core Data for Dependency Injection

I'm toying with using Core Data to manage a graph of objects, mainly for dependency injection (a subset of the NSManagedObjects do need to be persisted, but that isn't the focus of my question). When ...
2
votes
1answer
245 views

Passing primitives to an OCMock's stub

I'm learning how to use OCMock to test my iPhone's project and I have this scenario: a HeightMap class with a "getHeightAtX:andY:" method, and a Render class using "HeightMap". I'm trying to unit test ...
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 = ...
2
votes
1answer
348 views

OCMock asynchronous block callback

I am building a small library to handle file upload and download operations for me and am trying to integrate a suite of tests into it. Rather than using delegate callback methods, I am handling the ...
2
votes
3answers
554 views

Set readonly navigationController property on UIViewController for mocking

I have created a mock UINavigationController using OCMock. However, I cannot assign it to the navigationController property of a UIViewController since that property is readonly. id ...
2
votes
1answer
530 views

Stub a Method That Returns a BOOL with OCMock

I'm using OCMock 1.70 and am having a problem mocking a simple method that returns a BOOL value. Here's my code: @interface MyClass : NSObject - (void)methodWithArg:(id)arg; - ...
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
246 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
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
113 views

Obj-C: How to get and call a block argument from NSInvocation - stubbing Twitter account on iOS

I'm testing an iOS application using KIF and OCMock, stubbing the device's ACAccountStore to return my own representation of a Twitter account. I want to stub requestAccessToAccountsWithType, and call ...
1
vote
1answer
118 views

How to init an object with stubbed values with OCMock

Ho do I stub a method used in the init method? The related methods in my class: - (id)init { self = [super init]; if (self) { if (self.adConfigurationType == ...
1
vote
2answers
129 views

Delayed OCMock verify / Dealing with Timeout in Unit Tests

I'm testing real web service calls with OCMock. Right now I'm doing something like: - (void)testWebservice { id mydelegatemock = [OCMockObject mockForProtocol:@protocol(MySUTDelegate)]; ...
1
vote
1answer
188 views

OCMock throwing NSInternalInconsistencyException when parameters are not the ones expected

I'm setting up a mock object for a delegate object, to check that when the URL is nil, the delegate method is called with nil as parameters. When the FileDownloadOperation behave as expected,the ...
1
vote
1answer
176 views

Objective C - OCMock and stubbing?

Is it possible to have an actual object of a class and only mock a method in that class instead of mocking the whole object? I want the object to behave 100% the same as the real object except 1 ...
1
vote
2answers
312 views

OCMock - How to expect the content of an nsarray

I want to test that the values i insert in a database are sent back to the delegate of my class. I tried to mock the delegate and expect the array i used to populate the database. It fails because ...
1
vote
1answer
215 views

Using block expectations with OCMock

I am using GHUnit & OCMock to do some testing work in my iOS app. So I have some trouble integrating them. The following code works well. NSString *s = [NSString stringWithString:@"122"]; id ...
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
421 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? ...
1
vote
1answer
658 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
585 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 ...
1
vote
1answer
202 views

Prefer Dependency-Injection over Partial Mocking?

I know this SO question, but it deals with the subject in more general terms. Should I prefer using partial Mocks over Dependency Injection? My question is based on the following quote from OCMock: ...
0
votes
1answer
42 views

How to debug an NSPredicate that is failing with mocked objects?

I have a core data application that uses an NSPredicate in one of its fetch requests. That predicate is defined as follows: NSDictionary *teamsParams = [NSDictionary dictionaryWithObject:teamArray ...
0
votes
1answer
27 views

Is it possible to 'expect' a method from a partial mock

It is not the best thing to do, but I would like to verify that a private method of an object is called, so I create a partial mock and add an expectation on the private method. Synchronizer * sync = ...
0
votes
1answer
74 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
1answer
41 views

Using partialMockForObject to do singleton class mock, how to create a method like "removeAllExpectations” to remove all remembered ones?

Confused on OCMock for singleton, get two methods, but none of them is perfect in my opinion. Using partialMockForObject. I want to use partialMockForObject to do singleton class mock. See ...
0
votes
1answer
50 views

OCUnit application testing: Trying to test UIPageControl numberOfPages == NSArray count

I'm relatively new to OCUnit and OCMock so please bear with me. I have a view controller which contains a UIPageControl where the number of pages is calculated from the count of an NSArray (which is ...
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
2answers
43 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
2answers
66 views

EXC_BAD_ACCESS with partialMockForObject and a UIView

I've got some troubles with OCMock and UIView. I have sort of this code: UIView *view1 = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 10, 10)]; id view1Mock = [OCMockObject ...
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
1answer
122 views

Running tests with OCMock on xCode 4.2 launches the application instead

I have a project I created by checking the "include Unit Tests" checkbox. I could run the tests nicely with ⌘U, until I included OCMock.framework (downloaded latest version - 1.77) Once I included ...
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.

1 2