Tagged Questions
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
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
3
votes
1answer
408 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
1answer
856 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
418 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
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
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
1answer
349 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
555 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
531 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
248 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
112 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
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
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
1answer
216 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
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 ...
0
votes
1answer
75 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
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
1answer
124 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.
0
votes
2answers
172 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
300 views
How can the return value of an OCMock stub be changed?
It seems that the first time I add andReturnValue on an OCMock stub, that return value is set in stone. For example:
id physics = [OCMockObject niceMockForClass:[DynamicPhysicsComponent class]
Entity ...
0
votes
2answers
442 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
596 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
1answer
805 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
- ...