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: - ...
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
825 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
406 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
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 ...
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
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
341 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
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
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
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 ...
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
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
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? ...
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
584 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
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
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
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
167 views

OCMock of class with method called from the test method

I am trying to test a method that instantiates an instance of MFMailComposeViewController. The method being tested calls several methods of MFMailComposeViewController including setSubject:. I want ...
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
2answers
439 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
1answer
479 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
4answers
358 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
324 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 ...