OCUnit is a unit testing framework for the Objective-C language and included with Apple's Xcode IDE since Xcode 2.1.

learn more… | top users | synonyms

0
votes
0answers
12 views

Failing OCUnit tests don't take me to the failing line when I click the error in XCode

I've got a large iOS project set up with OCUnit tests, some of which are imported from a dependent project, and some of which are local. When I have a failing test in the dependent project, I can ...
1
vote
1answer
41 views

OCMock partial mock gives unexpected call

I have a test that verifies (with OCMock) that a method gets called when a certain notification is sent: - (void)testThatVCRegistersToLocationUpdateNotification { IssueDetailsViewController* vc = ...
1
vote
2answers
52 views

How to replace async calls with mocks and predefined answers?

I have simple class for perform network stuff. It's a singleton and it encapsulates NSOperationQueue inside it. When class' user calls some method to getting data from network, this class creates ...
1
vote
3answers
59 views

NewRelicAgent does not work with OCTesting

I have a problem with the NewRelicAgent pod. It works fine with the nomral app targed und runs well in the simulator, but as soon as I start the test target, I get the the following error message: ...
0
votes
0answers
19 views

Can i run the OCUnit testing with the iphoneos not the iphonesimulator?

I'm having a huge problem trying to run the unit testing with the iphoneos, i need this because some of the framework that i`m using doesn´t run in the simulator, so if i try to run the unit test in ...
0
votes
1answer
38 views

Tests retaining reference count

It seems octest doesn't decrement reference count for instances created within a test - (void)test_That_TaskFetcher_is_Invoked_from_tasksDownloaded { InboxViewController *vc = ...
1
vote
1answer
37 views

Do the OCUnit, set the test after build to yes, the project can't build successfully

it's very strange, when i set the "test after build" to "yes" in "build settings", the project can't build successfully. but set to "no" , I press the "CMD+U" in keyboard, the test can executes ...
0
votes
0answers
46 views

calling method from test case not working in OCUnit

I am testing this method: -(IBAction)addTask{ if(!([mPriority.text isEqualToString:@"1"] ||[mPriority.text isEqualToString:@"2"] ||[mPriority.text isEqualToString:@"3"] ||[mPriority.text ...
0
votes
1answer
42 views

Trouble Adding OCUnit Testing Framework to Existing Xcode Project

I am trying to integrate Unit Tests in my current Xcode project using the OCUnit Testing Framework. I have been following Apple's documentation: ...
0
votes
1answer
58 views

OCUnit test cases not running

If I create a new project which includes unit tests, the test cases get called. But when I'm adding tests to an existing project I'm getting the following in the log: 2013-05-21 19:41:08.814 ...
0
votes
1answer
25 views

Can we add dependency in between unit test class1 to unit test class2 iOS

I have started writing Unit Test cases for my existing application for testing functional flow. I am using OCUnit (SentestingKit.framework). App is client-server based app. There are five tabs in my ...
0
votes
1answer
34 views

OCUnit testing problems in UINavigationController

I create single view application with 1) Story board 2) ARC and 3) Unit Testing. In view controller i drag on UIButton. and ViewContrller embedded with Navigation Controller (Using Interface). It run ...
1
vote
1answer
36 views

Bypass login/authentication in OCUnit application tests

I just setup application tests with OCUnit for my iOS project and am trying to figure out what to do with authentication. My app has a forced login screen where the user is required to authenticate ...
0
votes
0answers
32 views

Wait for custom initialization before starting OCUnit tests

I have a test target (OCUNit) that loads our application using the Bundle Loader (formally known as an Application Test). I would like to wait for some custom initialization code to be run before ...
0
votes
1answer
66 views

What is the difference between STAssertEqualObjects and STAssertEquals?

I have the following class: #import "Period.h" @implementation Period ... - (BOOL)isEqualTo:(id)object { return [self isEqual:object]; } - (BOOL)isEqual:(id)object { if (object == self) ...
0
votes
1answer
23 views

GHUnit as test bundle instead of separate target

Is it possible to create Test Bundle with OCUnit for unit tests, but instead OCUnit use GHUnit?
1
vote
2answers
110 views

How to unit test NSFetchedResultsControllerDelegate?

I am trying to write unit tests for a view controller that implements the NSFetchedResultsControllerDelegate protocol. The first test of the implementation (after some other tests of this view ...
1
vote
1answer
54 views

Using Xcode's unit-testing framework, can application code determine whether it is being run as unit test?

Using the built-in testing framework provided by Xcode, is there any way for application code to determine whether it is being run by the test runner, as opposed to running as the app? In other ...
1
vote
1answer
54 views

OCUnit - Break on test case failure?

When debugging test case failures it would be very useful if the execution would automatically break upon test case failure, so that I could directly investigate the failure. So essentially a break ...
0
votes
1answer
98 views

Unit test in didselectrowatindexpath in UItableview

I used the below code to call UITableView -(void)testJumpSection { NSIndexPath *indexPath1= [NSIndexPath indexPathForRow:0 inSection:0]; [viewControllerObject ...
0
votes
0answers
30 views

Customizing SenTest/OCUnit

From time to time, I have the impulse to modify some aspects of the Mac/iOS unit testing framework. I wouldn't want to sacrifice its nice integration with XCode, but at times I find myself hankering ...
0
votes
2answers
59 views

Do you need to define test methods in the public interface in OCUnit's test case class

When writing unit test with OCUnit it's possible to omit the test method definition in the public interface (.h). But what is the best practice for OCUnit regarding test methods definitions in public ...
3
votes
4answers
146 views

STAssertEquals for checking NSArray count - clean way

What is the correct way to check the NSArray items count with STAssertEquals for NSArray. Following was expected to work: ... STAssertEquals(1, [myArray count], @"One item should be in array"); ...
0
votes
1answer
64 views

STAssertTrue not returning as I expect

I'm just starting OCUnitTesting. I don't think that my code is wrong, but the problem is probably is a tiny mistake I made somewhere along the way.. I have a function - ...
2
votes
1answer
115 views

How can I launch OCUnit test on iPhone from Command line

I want to run unit test on iPhone without using Xcode. Is there any command line utility to run OCunit test on iPhone device. I also tried fruit-strap but it only launches App not OCtests. ...
0
votes
0answers
41 views

Running OCUnit test on device iPhone

OCUnit test is running on simulator through XCode, but it is not running on the actual device. Any suggestions?
0
votes
1answer
81 views

NSBundle while unit testing with OCUnit returns (null)

Problem : Retrieving from NSBundle returns (null) while running Unit Test, returns valid object on run time. What have I done ? I have searched SO with similar problems, apple's developer and other ...
12
votes
1answer
237 views

SSL Connections Issues when running Unit Tests from the command line

Goal Our goal is to execute our Unit Tests within a Continuous Integration environment (Jenkins) (I believe it is essential for every question to state what exactly one is trying to achieve. Maybe ...
0
votes
1answer
55 views

Issue OCUnit Test Case for Notification

- (id)init { if (self = [super init]) { [[NSNotificationCenter defaultCenter] addObserver:self ...
0
votes
2answers
75 views

Passing NSTimer has parameter

I have method which take NSTimer has parameter which is in Class A -(void)demoMethod:(NSTimer *)timer{ //Do something! } Now I have covering test case for the method: ...
1
vote
2answers
72 views

Exception raised for the setup and teardown OCUnit test case

- (void)setUp { [super setUp]; @try { [Problem setupProblem]; } @catch (NSException *exception) { NSLog(@"exception Caught %@: %@", [exception name], [exception ...
2
votes
1answer
145 views

Why doesn't NSURLConnection work in iOS OCUnit test cases?

I have written an OCUnit unit test case which relies on an external web-service to complete. I know this is controversial in itself but I definitely want to have the web-service included in the tests ...
0
votes
1answer
138 views

STAssertEqualObjects compare class

i trying to cover the test case a method which return class object. -(ClassName *)returnClass{ return _class; } -(void)test_ReturnClass{ id returnObj; returnObj = [aClassNameObj returnClass]; ...
0
votes
0answers
34 views

how to write Test case for NSNotification for onWillEnterForgroundNotification

How to write ocUnit test case notification when application enter foreground -(void)onWillEnterForgroundNotification:(NSNotification)notification{ [self message:@"Hi" Value:@"G"]; } @All Any ...
1
vote
2answers
206 views

TDD: Unit Testing Asynchronous Calls

guys: I'm working on an application, and building it with unit testing. However, I'm now in a situation where I need to test asynchronous calls. For example, - ...
1
vote
2answers
74 views

Unit tests throw error when simulator is in SDK 5.1

My unit tests run fine when the target is set to 6.1, and the code itself is fine when I walk through the features in the simulator. I think the problem is that the unit tests are expecting the 6.1 ...
0
votes
1answer
90 views

How do I exclude a code path when running a unit test on iOS?

I have some code that throws an exception when run from a logic test in ocunit. I would like to ignore this code and test the rest of the functionality without having to setup an application test nor ...
4
votes
1answer
215 views

Jenkins iOS job broken because “FATAL: Log statements out of sync: current test case was null”

I setup a jenkins job for my iOS project. The host target runs smoothly while the unit test target failed on a very strange reason given by "jenkins console output" as below: [DEBUG] Test Case ...
0
votes
2answers
144 views

CLLocationManager and unit testing

I have been trying to add some (logic) unit tests to my code recently. I've set up the tests with Kiwi, I like the BDD style and the syntax. My problem now is that I'm trying to test some code that ...
0
votes
2answers
66 views

Assert that message is sent to self OCUnit

I am fairly new to OCUnit and I am trying to add a Test Case to a method that looks like this: - (void) processMessageBody:(XMPPMessage *)message fromNick:(NSString *)nick; { ...
14
votes
2answers
908 views

Xcode warning “profiling: invalid magic number”

I just installed Xcode 4.6. When I run my OCUnit tests now, I get multiple lines with "profiling: invalid magic number" in the output window after all tests have finished. I'm pretty sure that Xcode ...
0
votes
1answer
101 views

Issue implementing OCUnit in existing ARC project

I'm looking into adding unit tests into my existing app, mainly to teach myself how it all works. I've got to the stage where everything is wired up with dependencies, I can run some little checks ...
1
vote
2answers
39 views

Pending OCUnit tests

Is there any way to denote a pending test using OCUnit? Of course, I could do something like: STFail(@"pending test"); However, it becomes all too easy to see a failed test run and assume that it's ...
0
votes
1answer
188 views

How to write OCUnit Test Case

I want to write unit tests using Apple's default SenTestingKit for the below method: - (NSDictionary*)getValueTags { return _tags; } - (NSString*)getFlag { NSString* jo = @""; for ...
0
votes
1answer
47 views

How do I add a target to a test scheme?

I have configured unit testing for a project, and I need to use the classes that are in the run scheme also in the test scheme. This because if I try to use a class that I use in the run scheme, I ...
1
vote
1answer
143 views

OCUnit crashes when creating UITextView

Unit testing is handling out humble-pie by the bucketload here at the moment. I am trying to run tests on my BannerAdViewController-class, but everything comes tumbling down when reaching the ...
2
votes
1answer
162 views

Running ios ocunit logic tests through command line fails to access keychain

I am trying to run my logic tests (OCUnit) using command line. but it fails with errors. Command used xcodebuild -sdk iphonesimulator4.3 -configuration Debug -project XYZ.xcodeproj -target XYZ build ...
0
votes
0answers
42 views

Is there a way to stop the destination hardware devices from being cycled during unit testing with Xcode other than ignoring or disconnecting them?

There seems to be some inconsistencies with unit testing using in Xcode 4. I'm using OCUnit but the issues may also apply to other frameworks. I want to point out that setting the debugger to GDB as ...
0
votes
1answer
302 views

how to use presentedViewController when testing for modal launch

I'm unit testing one of my view controllers and wanted to confirm that when a logic branch is hit, the modal view controller that I pop up with present: viewDidLoad MWLoginViewController ...
0
votes
1answer
77 views

EXC_BREAKPOINT using UITableViewCell's textLabel's text in a test target

I have a test target where I am testing a table view data source.I want to test that the cell's textLabel returned by tableView:cellForRowAtIndexPath: contains the text I expect, but when I set the ...

1 2 3 4 5