Tagged Questions

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

24
votes
3answers
505 views

Unit tests for memory management in Cocoa/Objective-C

How would you write a unit test—using OCUnit, for instance—to ensure that objects are being released/retained properly in Cocoa/Objective-C? A naïve way to do this would be to check the value of ...
13
votes
4answers
3k views

Why doesn't gcov report any lines being covered by my unit tests?

I am using Xcode 3.2 on 10.6, with the shipped version of gcov and default GCC compiler (both version 4.2.1). I have created a dependent Cocoa unit test bundle which is injected into my app, and ...
12
votes
3answers
1k views

Link error while building a unit test target

I have a XCode4 / iOS project with a regular target and unit test target. Everything works fine, except when I try to #import one of my classes in my test class and try to use it. If I try to build ...
11
votes
2answers
2k views

Xcode 4: Run tests from the command line (xcodebuild)?

I've created a brand new iOS project in Xcode 4, and included unit tests. The default app has 2 targets, the main application and the unit test bundle. Using "Product > Test" (Command-U) builds the ...
10
votes
6answers
2k views

Unit Testing broken in iOS 4.1 SDK?

After upgrading to the 4.1 iOS SDK my unit test bundles always return with the following two errors and one warning: An internal error occurred when handling command output: ...
9
votes
1answer
1k views

OCUnit & NSBundle

I created OCUnit test in concordance with "iPhone Development Guide". Here is the class I want to test: // myClass.h #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> @interface ...
9
votes
2answers
1k views

Unit testing and TDD, OCUnit vs Google Tool Box

I'm trying to choose between OCUnit and Google Tool Box, do you have any preferences, would recommend one or the other, why ? I would be very interested to hear about your experiences with any of the ...
8
votes
1answer
1k views

How to run and debug unit tests for an iPhone application

It took me quite some time but I finally managed to make it work for my project. To create the "logic" tests I followed Apple guidelines on creating logic tests. This works fine once you understand ...
8
votes
1answer
1k views

Why do my OCUnit tests fail with “code 138”?

I'm currently trying to learn objective-c using XCode 3.1. I've been working on a small program and decided to add unit testing to it. I followed the steps on the Apple Developer page - Automated ...
8
votes
4answers
1k views

Unit Testing of private methods in Xcode

I'm trying out test driven development in a toy project. I can get the tests working for the public interface to my classes (although I'm still on the fence because I'm writing more testing code than ...
8
votes
2answers
4k views

iPhone - Retrieving Resources for logical unit tests

I've been following Apple's documentation on writing unit tests for the iPhone, and out of the box, the routine doesn't seem to work. I'm not sure I understand where the unit test is going to get the ...
8
votes
2answers
824 views

How do I trap OCUnit test pass/failure messages/events

I'm trying to use xcodebuild and OCUnit with my Continuous Integration server (TeamCity). JetBrains offers test observer implementations for boost::test and CppUnit that format test output in a way ...
7
votes
3answers
667 views

Xcode 4 unit testing linker error

NOTE: "Use GHUnit" is not an acceptable answer to this question. I know most think GHUnit is better than the Xcode4 OCUnit, but that's not what I'm asking about. I'll evaluate that separately. I have ...
7
votes
3answers
389 views

Occasional errors when running OCUnit application test suite on device

I'm having some problems with my OCUnit test suite, when running application tests (i.e. on the device). Occasionally, I get a tricky error that seems to be thrown from the OCUnit classes. I've been ...
7
votes
1answer
1k views

OCUnit test for protocols/callbacks/delegate in Objective-C

Using OCUnit, is there a way to test delegate protocols? I'm trying this, which doesn't work. -(void) testSomeObjDelegate { SomeObj obj = [[SomeObj alloc] initWithDelegate:self]; [obj ...
6
votes
4answers
2k views

OCUnit, NSLog, and XCode 3.1

I'd been using OCUnit (the default installation that comes with XCode) in XCode 3.0. I've been happy being able to run my tests and see the results in the Build Results window, as well as any NSLog() ...
5
votes
2answers
1k views

OCUnit Application Test with Simulator in terminal

Is it possible to start an application test that runs in the simulator with a terminal command(s)? Thanks
5
votes
4answers
2k views

SenTest OCUnit in Xcode 4

I haven't been able to find any up to date info on using the OCUnit tests with Xcode 4, even though it is a redesigned feature. Apples own documentation in the Organizer is from 2005 (OS X 10.3). I ...
5
votes
3answers
758 views

iOS unit test: How to set/update/examine firstResponder?

How do you write first responder unit tests? I'm trying to write a test to confirm that a method advances focus to the next text field. controller is a descendant of UIViewController. But this ...
4
votes
2answers
94 views

How do I unit test for EXC_BAD_ACCESS?

I know how to resolve EXC_BAD_ACCESS issues, but I'm not sure how to unit test for it. Is there a way to capture EXC_BAD_ACCESS in code instead of simply crashing? Here's why I ask: I have written a ...
4
votes
2answers
614 views

isKindOfClass and NSStringFromClass disagree about UIApplicationDelegate

I was playing with a simple OCUnit test for an iPhone app, and just wanted to assert that the app delegate was an instance of the class that I expected it to be. I didn't expect this test to be very ...
4
votes
2answers
235 views

Imported files not recognized in OCUnit

I am doing unit testing on my iPhone app using OCUnit on XCode 3.2.3, and iOS 4.0. I have successfully set up my testing environment to pass and fail basic tests appropriately, but when I import my ...
4
votes
1answer
691 views

iPhone: Application Testing and Core Location

I'm trying to implement Application Tests as described here. So far, so good, but i fail to test, for instance, the location of the device using Core Location. I have added the appropriate Framework ...
3
votes
2answers
477 views

Linking error for unit testing with XCode 4?

I want to write some logic unit tests for classes in my XCode application. In Xcode 4, I clicked on the project name in the Project Navigator, and from the bottom clicked Add Target. I chose "Cocoa ...
3
votes
2answers
158 views

How to setup iOS UI tests as build dependency, like OCUnit?

I'd like to add UI tests to an iOS project, in the same manner as OCUnit tests. I know there is the Instruments + UIAutomation JavaScript approach, but I don't see how that fits into an automated ...
3
votes
0answers
360 views

OCUnit example on iOS for Xcode 4?

I already created a App that use OCUnit and it run these tests with Xcode 3.2. However, today I upgrade to Xcode 4 and I also create new project, add bundle,...but I can't run test cases. The build ...
3
votes
2answers
488 views

What's the quickest way to compare a NSUInteger with an int (e.g. 5) in objective-c?

What's the quickest way to compare a NSUInteger with an int (e.g. 5) in objective-c? Background - I'm noting that the following line of code gives an error: STAssertEquals([nsMutableArrayInstance ...
3
votes
1answer
424 views

How to write test cases for drawing text / string in a box?

I am drawing strings in a rectangular frame. The string is drawing perfectly. Now I need to write test cases using sentesting kit. I have no ideas from where I should start. For help I have also seen ...
3
votes
2answers
594 views

How to configure a OCUnit test bundle for a framework?

I've been developing a Mac OS X framework and I want to use OCUnit in my XCode 3.2.1 project. I've followed several tutorials on how to configure a OCUnit test bundle. The problem is that when I ...
3
votes
3answers
687 views

Simplified asserts in OCUnit

I just started jusing OCUnit and find the asserts a bit cumbersome. In JUnit I can write a test to compare numbers like below. This test will obviously fail, but this shows the nice, simple assert I ...
3
votes
1answer
322 views

Testing View Controllers --iPhone

My question is 2-fold. 1. Can I use OCUnit to test View Controllers. If so, how should I do it? If not, is there another Testing Kit I can use?
2
votes
2answers
53 views

iPhone testing: testing IBOutlets

I actually feel a little embarrassed asking this because it feels about as basic as you can go, but it's been stumping me for hours... Let's say I have an instance of a UIViewController (called ...
2
votes
0answers
159 views

Xcode 4: dyld error running unit tests from command line

Following the instructions here I setup a test target to run my OCUnit test cases from the command line. The tests work in Xcode via cmd-U, however they don't work in the Terminal. Running them, I ...
2
votes
3answers
269 views

Run logic tests in Xcode 4 without launching the simulator

I want to run tests in Xcode 4 using OCUnit without launching the simulator. Please, don't try and convince me I am doing unit testing wrong or anything like that. I like to do TDD the traditional ...
2
votes
0answers
40 views

Loading an NSPersistentDocument from a unit test

I'm attempting to write an integration test using the OCUnit/SenTest Framework which I feel relatively comfortable with. The test is regarding the loading of an NSPersistentDocument-subclass which ...
2
votes
0answers
122 views

Good test runner for OCUnit/XCode Unit Tests

Is there a good GUI based test runner for the OCUnit/XCode 4 unit testing frameworks? I'm looking for a redlight/greenlight type GUI, maybe something that looks like the NUnit test runner. I found ...
2
votes
1answer
153 views

Test fails due to NSAssert assertion failure

I've just started writing tests for my iOS app, I'm using Xcode4 and OCUnit. I'm now writing a test for a piece of code that should throw an exception if a static variable has already been assigned ...
2
votes
2answers
731 views

SenTestingKit in Xcode 4: Asynchronous testing?

I have been searching for a way to use SenTestingKit to do some integration testing between my client-side code and our server. I haven't had any luck. It seems that once the code is run in a method, ...
2
votes
1answer
64 views

Is there a way to “Test” current file in Xcode4?

Is there a way to "Test" current file in Xcode4? That is if you are writting your 10th unit test, but rather than going TEST and having all unit tests run, you want to only trigger running those ...
2
votes
2answers
139 views

do I need to manually add each *.m file to my unit test target when it's needed?

I'm using Unit Testing in XCode 4. I've been adding my application *.m files to the unit test target "compile sources" as I refer to them so the unit test will build/run. Is there a better way ...
2
votes
2answers
226 views

How to write a unit test for geo location with ocUnit

I'm currently working with a simple object that holds a lat and lng value as NSString. But when I attempt to assert they are equal I get a failure w/ this approach - (void) testLocationParseJson { ...
2
votes
2answers
714 views

running test Case using OCUnit not working?

when run the target for test cases nothing is happening instead it is showing warning message warning: Skipping tests; the iPhoneSimulator platform does not currently support application-hosted ...
2
votes
2answers
515 views

SenTestKit: cleaning up after ALL tests have run?

I am using SenTest in XCode for my unit tests. I must run a command-line task for my unit tests to test. I can do that in the +initialize method of my test class (subclass of SenTestCase, of course). ...
2
votes
3answers
158 views

OCUnit tests not running / not being found

I'm trying to get to grips with OCTest, but can't seem to get it to actually run my tests (at least, I believe it's not running my tests). I've set up a project as described in the developer ...
2
votes
1answer
99 views

OCUnit Error Codes

Does anyone know how to find a list of all the possible error codes thrown by the ostest utility, and their meanings? I noticed this to be a common problem for people, where they ask about an OCUnit ...
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
76 views

XCode - Run Focussed Test

In XCode - Is there a way of running just one test(one test case or preferably one test method). What I do today is to run the 'Test' task which runs all tests and takes up a lot of time. Thanks
2
votes
3answers
1k views

What is the best approach for writing unit tests for iPhone / iPad?

I am developing an iPad application. I'm not sure if I should write unit tests for this application, and if so, how I should go about writing them. What would you suggest as the best approach to ...
2
votes
1answer
237 views

Unit tests only run automatically when active SDK is “simulator”?

I have followed the instructions Apple publishes for unit testing applications on iPhone and things work great when I set the active SDK to "iPhone Simulator". I have it configured to always build and ...
2
votes
2answers
1k views

How to run OCTest from command-line, not XCode

XCode 3.1.2 using built-in OCTest unit testing. I'm getting a crash when unit tests run. I want to run w/ a few extra environment variables (MallocCheckHeapStart, MallocCheckHeapEach, for example). ...

1 2 3